-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 KB
/
package.json
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
{
"name": "code-tray",
"description": "Open VSCode projects from tray menu.",
"version": "1.0.0",
"main": "main.js",
"repository": "https://github.com/diego3g/youtube-challenge-electron-tray",
"author": "Rocketseat <[email protected]>",
"license": "MIT",
"scripts": {
"start": "electron .",
"dev": "nodemon --exec electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:linux": "electron-builder --linux",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@sentry/electron": "0.17.1",
"cross-spawn": "^6.0.5",
"electron-store": "^4.0.0"
},
"devDependencies": {
"electron": "^5.0.7",
"electron-builder": "^21.0.15",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"nodemon": "^1.19.1"
},
"build": {
"appId": "com.rocketseat.codetray",
"productName": "Code Tray",
"mac": {
"category": "public.app-category.developer-tools"
},
"linux": {
"category": "Utility",
"icon": "icon.png",
"target": [
"deb",
"snap",
"rpm"
]
},
"win": {
"target": "NSIS",
"icon": "icon.ico"
}
}
}