-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.64 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
51
52
53
54
55
56
57
58
{
"name": "douban.fm-electron",
"version": "0.2.1",
"description": "A tiny, elegant douban.fm desktop client developed with electron.",
"author": "Binghuan Zhang <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/estepona/douban.fm-electron.git"
},
"homepage": "https://github.com/estepona/douban.fm-electron#readme",
"license": "ISC",
"main": "./tsout/app.js",
"scripts": {
"build": "npx tsc",
"watch": "npx tsc -w",
"start": "npx tsc && npx electron ./tsout/app.js",
"pack": "npx electron-builder -mwl",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "com.electron.doubanfm",
"productName": "douban.fm-electron",
"copyright": "Copyright © 2019- ${author}",
"directories": {
"buildResources": "build",
"output": "dist",
"app": "."
},
"mac": {
"category": "public.app-category.entertainment",
"target": "dmg"
}
},
"bugs": {
"url": "https://github.com/estepona/douban.fm-electron/issues"
},
"dependencies": {
"axios": "^0.21.2",
"dotenv": "^8.2.0",
"lodash": "^4.17.21",
"mousetrap": "^1.6.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/dotenv": "^6.1.1",
"@types/lodash": "^4.14.146",
"@types/mousetrap": "^1.6.3",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"electron": "^11.5.0",
"electron-builder": "^22.1.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.19.1",
"typescript": "^3.7.2"
}
}