-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 692 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 692 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
27
{
"name": "nodegui-plugin",
"version": "1.0.0",
"description": "A sample native plugin example for NodeGUI",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run build:addon",
"build:addon": "cross-env CMAKE_BUILD_PARALLEL_LEVEL=8 cmake-js compile",
"dev": "npm run build && qode dist/demo.js"
},
"author": "Atul R",
"license": "MIT",
"peerDependencies": {
"@nodegui/nodegui": "*"
},
"dependencies": {
"cmake-js": "^5.3.2",
"cross-env": "^6.0.3",
"node-addon-api": "^2.0.0"
},
"devDependencies": {
"@nodegui/nodegui": "^0.12.1",
"@types/node": "^13.1.6",
"typescript": "^3.7.3"
}
}