forked from sentialx/node-window-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1017 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
38
39
40
41
{
"name": "node-window-manager",
"version": "1.1.0",
"description": "Manage windows in macOS, Windows and Linux",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"install": "npm run rebuild",
"rebuild": "node-gyp rebuild",
"rebuild-dev": "npm run rebuild -- --debug",
"prepublishOnly": "npm run build && npm run rebuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sentialx/node-window-manager.git"
},
"keywords": [
"window-manager",
"native",
"macos",
"linux",
"windows"
],
"author": "sentialx",
"license": "MIT",
"bugs": {
"url": "https://github.com/sentialx/node-window-manager/issues"
},
"homepage": "https://github.com/sentialx/node-window-manager#readme",
"devDependencies": {
"@types/node": "12.0.8",
"tslint": "5.17.0",
"typescript": "3.5.1"
},
"dependencies": {
"node-addon-api": "1.6.3",
"node-gyp": "5.0.0"
}
}