-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "context-bot",
"version": "1.3.0",
"description": "An OS-level context switcher for developers. Saves open windows and Chrome tabs as snapshots and restores them on demand.",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "electron-builder",
"dist:win": "electron-builder --win",
"dist:mac": "electron-builder --mac",
"dist:linux": "electron-builder --linux",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Varshavia/Context-bot.git"
},
"keywords": [
"electron",
"productivity",
"context-switcher"
],
"author": {
"name": "Yusuf Suat Babacan",
"email": "[email protected]"
},
"license": "ISC",
"type": "commonjs",
"build": {
"appId": "com.yusuf.contextbot",
"productName": "Context Bot",
"win": {
"target": "nsis",
"icon": "public/icon.ico"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.png",
"category": "public.app-category.productivity"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "assets/icon.png",
"category": "Utility",
"maintainer": "Yusuf Suat Babacan <[email protected]>"
},
"publish": {
"provider": "github",
"owner": "Varshavia",
"repo": "Context-bot"
},
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"src/**/*",
"public/**/*",
"assets/**/*",
"node_modules/**/*"
],
"asar": true
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"concurrently": "^9.2.1",
"electron": "^33.0.0",
"electron-builder": "^26.7.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"prettier": "^3.0.0",
"wait-on": "^8.0.0"
},
"dependencies": {
"electron-updater": "^6.3.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ws": "^8.19.0"
}
}