-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 829 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 829 Bytes
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
{
"name": "nodegyp-helloworld",
"version": "1.0.0",
"description": "",
"main": "./dist/main.js",
"scripts": {
"start": "electron ./dist/main.js",
"build": "tsc",
"nconfig": "cd ./node_natives && node-gyp configure --target=7.1.12 --dist-url=https://atom.io/download/electron",
"nbuild": "cd ./node_natives && node-gyp build --target=7.1.12 --arch=x64 --dist-url=https://atom.io/download/electron",
"nrebuild": "cd ./node_natives && node-gyp rebuild --target=7.1.12 --arch=x64 --dist-url=https://atom.io/download/electron"
},
"dependencies": {
"klaw": "^3.0.0",
"nan": "*",
"node-loader": "^0.6.0"
},
"devDependencies": {
"fs-extra": "^5.0.0",
"klaw-sync": "^3.0.2",
"electron": "^7.1.12",
"typescript": "^3.6.0"
},
"author": "gameKnife",
"license": "MIT"
}