-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json.bak
65 lines (65 loc) · 1.48 KB
/
package.json.bak
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
{
"name": "school-clock",
"version": "1.0.3",
"description": "一个用于走廊或者什么别的公共展示用的工具",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder"
},
"build": {
"appId": "com.zgit.schoolclock",
"productName": "校园时钟工具",
"copyright": "Copyright © 2024 云默安 & ZGIT",
"directories": {
"output": "dist"
},
"win": {
"target": "nsis",
"icon": "core/clock.ico"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"extraFiles": [
{
"from": "node_modules/ffmpeg-static",
"to": "resources/ffmpeg-static",
"filter": [
"**/*"
]
}
],
"files": [
"core/**/*",
"pages/**/*",
"node_modules/**/*",
"main.js",
"package.json",
"LICENSE"
]
},
"keywords": [],
"author": "云默安",
"license": "GPL3.0",
"devDependencies": {
"electron": "^22.3.27",
"electron-builder": "^24.13.3"
},
"dependencies": {
"axios": "^1.7.4",
"electron-updater": "^6.2.1",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"install": "^0.13.0",
"moment": "^2.30.1",
"npm": "^10.8.2",
"ntp-client": "^0.5.3"
}
}