-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 loc) · 1018 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
{
"name": "@nodegui/plugin-title-bar",
"version": "0.0.2",
"description": "Plugin for NodeGUI to hide macOS title bar and leave only traffic lights.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "[email protected]/nodegui/nodegui-plugin-title-bar.git",
"homepage": "https://github.com/nodegui/nodegui-plugin-title-bar",
"scripts": {
"prepare": "rimraf dist && npm run build",
"postinstall": "npm run build:addon",
"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": "Dimitar Nestorov <[email protected]> (https://dimitarnestorov.com)",
"license": "MIT",
"peerDependencies": {
"@nodegui/nodegui": "*"
},
"dependencies": {
"cmake-js": "^6.0.0",
"cross-env": "^6.0.3",
"node-addon-api": "^2.0.0"
},
"devDependencies": {
"@nodegui/nodegui": "^0.15.5",
"@types/node": "^12.12.5",
"rimraf": "^3.0.0",
"typescript": "^3.6.4"
}
}