-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 829 Bytes
/
package.json
File metadata and controls
29 lines (29 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
27
28
29
{
"name": "nodegui-plugin-webview",
"version": "1.1.1",
"description": "Webview plugin for NodeGui",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "cross-env tsc && npm run build:addon",
"build:addon": "cross-env CMAKE_BUILD_PARALLEL_LEVEL=8 cmake-js compile",
"dev": "cross-env npm run build && qode dist/demo.js",
"postinstall": "node ./scripts/install.js && npm run build:addon"
},
"author": "Atul R",
"license": "MIT",
"peerDependencies": {
"@nodegui/nodegui": ">=0.30.2"
},
"dependencies": {
"@nodegui/artifact-installer": "^1.1.0",
"cmake-js": "^6.1.0",
"cross-env": "^7.0.3",
"node-addon-api": "^3.1.0"
},
"devDependencies": {
"@nodegui/nodegui": "^0.30.2",
"@types/node": "^14.14.32",
"typescript": "^4.2.3"
}
}