-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.99 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nutool-clockconfigure",
"version": "1.09.0001",
"description": "",
"main": "main.js",
"scripts": {
"start": "gulp && cross-env NODE_ENV=development electron .",
"watch": "concurrently \"gulp watch\" \"cross-env NODE_ENV=development electronmon .\"",
"dir": "gulp && cross-env NODE_ENV=production electron-builder --win --x64 --dir",
"build": "gulp && cross-env NODE_ENV=production electron-builder --win --x64"
},
"author": "NUVOTON TECHNOLOGY CORPORATION",
"copyright": "Copyright ©2008-2023 Nuvoton Technology Corporation",
"license": "UNLICENSED",
"dependencies": {
"dapjs": "file:local_modules/dapjs-yc",
"usb": "^2.10.0"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"concurrently": "^8.2.1",
"cross-env": "^7.0.3",
"electron": "^26.2.1",
"electron-builder": "^24.6.4",
"electronmon": "^2.0.2",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-terser": "^2.1.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"worker-plugin": "^5.0.1"
},
"build": {
"productName": "NuTool-ClockConfigure",
"appId": "com.nuvoton.clockconfigure",
"npmRebuild": false,
"files": [
"index.htm",
"main.js",
"preload.js",
"src",
"local_modules",
"node_modules",
"package.json"
],
"win": {
"target": [
{
"target": "nsis"
}
],
"icon": "build/app.ico"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "NuTool-ClockConfigure",
"include": "release/script/installer.nsh"
},
"directories": {
"buildResources": "assets",
"output": "release/build"
},
"extraResources": [
"./src/res/**",
"./assets/**"
]
}
}