-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 KB
/
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
42
43
44
45
46
47
48
49
50
51
{
"name": "launchui",
"version": "0.1.4",
"description": "Launcher for GUI Node.js applications using libui-node",
"main": "index.js",
"files": [
"app",
"src",
"tools"
],
"scripts": {
"download": "npm run download:node && npm run download:libui && npm run download:libui-node",
"download:node": "node tools/download.js node",
"download:libui": "node tools/download.js libui",
"download:libui-node": "node tools/download.js libui-node",
"build": "npm run build:node && npm run build:libui && npm run build:libui-node && npm run build:launchui",
"build:node": "node tools/build-node.js",
"build:libui": "node tools/build-libui.js",
"build:libui-node": "node tools/build-libui-node.js",
"build:launchui": "node tools/build-launchui.js",
"package": "node tools/package.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mimecorg/launchui.git"
},
"keywords": [
"node",
"libui",
"launcher",
"desktop"
],
"author": "Michał Męciński",
"license": "MIT",
"bugs": {
"url": "https://github.com/mimecorg/launchui/issues"
},
"homepage": "https://github.com/mimecorg/launchui",
"dependencies": {
"nugget": "^2.0.1"
},
"devDependencies": {
"@mischnic/async-hooks": "0.0.4",
"archiver": "^2.1.1",
"autogypi": "^0.2.2",
"extract-zip": "^1.6.7",
"nbind": "^0.3.15",
"node-gyp": "^3.6.2",
"rimraf": "^2.6.2"
}
}