-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 867 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 867 Bytes
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
{
"name": "movie-manager-client",
"version": "1.0.0",
"description": "跨平台电影管理客户端",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "electron-builder --win --x64",
"package": "electron-packager . 电影管理器 --platform=win32 --arch=x64 --out=dist --overwrite"
},
"build": {
"appId": "com.tinygeeker.moviemanagerclient",
"productName": "电影管理器",
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"keywords": [
"electron",
"movie",
"manager",
"video"
],
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^26.4.0",
"electron-packager": "^17.1.2"
}
}