forked from lhc-up/recorder-electron-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.85 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "recorder-electron-vue",
"version": "1.0.0",
"description": "recorder-electron-vue",
"appName": "recorder-electron-vue",
"main": "app/main.js",
"scripts": {
"dev": "node ./build/dev.js",
"build": "node ./build/build.js"
},
"author": "luohao",
"license": "ISC",
"build": {
"asar": true,
"productName": "recorder-electron-vue",
"appId": "com.electron.template",
"copyright": "Copyright © template",
"directories": {
"output": "pack"
},
"files": [
"app/**"
],
"mac": {
"identity": "com.electron.templat",
"target": [
"dmg"
],
"artifactName": "${productName}.${ext}",
"icon": "src/main/favicon/favicon.icns"
},
"dmg": {
"title": "${productName}",
"artifactName": "${productName}.${ext}",
"icon": "src/main/favicon/favicon.icns"
},
"win": {
"legalTrademarks": "Copyright © template",
"publisherName": "electron",
"requestedExecutionLevel": "highestAvailable",
"target": [
{
"target": "nsis",
"arch": [
"ia32"
]
}
],
"artifactName": "${productName}.${ext}",
"icon": "main/favicon/favicon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": true,
"allowElevation": true,
"artifactName": "${productName}-安装包-V${version}.${ext}",
"runAfterFinish": true,
"shortcutName": "recorder-electron-vue"
}
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"adm-zip": "^0.4.14",
"archiver": "^4.0.1",
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.5.3",
"electron": "^8.1.1",
"electron-builder": "^22.4.0",
"electron-settings": "3.2.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"inline-worker": "^1.1.0",
"less": "^3.11.1",
"less-loader": "^6.1.0",
"mini-css-extract-plugin": "^0.9.0",
"progress-bar-webpack-plugin": "^2.1.0",
"url-loader": "^4.1.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0",
"worker-loader": "^3.0.8"
}
}