forked from QLU539/dtalk-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 885 Bytes
/
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
{
"name": "web-dtalk",
"version": "0.0.1",
"description": "钉钉 网页版 App",
"main": "src/main.js",
"scripts": {
"dev": "electron .",
"build": "electron-builder"
},
"author": "xgqfrms",
"build": {
"appId": "top.xgqfrms.dtalk",
"productName": "钉钉(DingTalk)",
"electronDownload": {
"version": "18.1.0",
"mirror": "https://npm.taobao.org/mirrors/electron/"
},
"copyright": "copyright © 2022 ${author}",
"directories": {
"buildResources": "icons",
"output": "build"
},
"files": [
"src/**/*"
],
"linux": {
"category": "Network;Chat",
"target": [
{
"target": "deb",
"arch": "x64"
}
],
"icon": "./icons/"
}
},
"devDependencies": {
"electron": "^18.0.0",
"electron-builder": "^23.0.0"
},
"dependencies": {}
}