-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 885 Bytes
/
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
{
"name": "steam-chat",
"productName": "Steam Chat",
"version": "0.2.2",
"description": "Steam Chat desktop app",
"license": "MIT",
"repository": "timche/steam-chat",
"author": "Tim Cheung <tim@cheung.io>",
"main": "dist-js",
"scripts": {
"start": "tsc && electron .",
"dist": "tsc && electron-builder --macos"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.4.0",
"electron": "^6.0.7",
"electron-builder": "^21.2.0",
"husky": "^3.0.5",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"typescript": "^3.6.2"
},
"dependencies": {
"electron-debug": "^3.0.1"
},
"build": {
"appId": "dev.timche.steam-chat",
"artifactName": "${name}-${version}-${os}.${ext}",
"files": [
"**/*",
"!media${/*}"
]
}
}