-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "cocoscreatorfordeskapp",
"version": "1.0.0",
"description": "使用cocos creator开发游戏,打包桌面应用解决方案",
"main": "src/main.js",
"scripts": {
"app": "electron .",
"pack-win": "electron-builder --win --x64",
"pack-mac": "electron-builder --mac"
},
"build": {
"appId": "com.my.game",
"productName": "Game",
"mac": {
"target": [
"dmg"
]
},
"win": {
"asar": true,
"asarUnpack": "static",
"icon": "icon/icon.png",
"target": [
"zip"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tidys/CocosCreatorForDeskApp.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tidys/CocosCreatorForDeskApp/issues"
},
"homepage": "https://github.com/tidys/CocosCreatorForDeskApp#readme",
"dependencies": {
"@types/fs-extra": "^8.0.0",
"@types/node": "^12.6.3",
"chokidar": "^3.0.2",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"json-format": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"electron": "^5.0.6",
"eslint-plugin-vue": "^5.2.3"
}
}