-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
37 lines (37 loc) · 881 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
{
"name": "@nodegui/packer",
"version": "1.5.0",
"files": [
"dist",
"template",
"scripts"
],
"description": "Package and deploy apps built with NodeGUI to all platforms",
"main": "./dist/index.js",
"bin": {
"nodegui-packer": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"postinstall": "node ./scripts/setupBinaries.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@nodegui/nodegui": "^0.39.1",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.10.2",
"@types/plist": "^3.0.2",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@nodegui/nodegui": ">=0.15.0"
},
"dependencies": {
"@nodegui/artifact-installer": "^1.1.0",
"commander": "^4.0.1",
"fs-extra": "^10.0.0",
"plist": "^3.0.4"
}
}