-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 2.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ikagaka-desktop",
"version": "1.0.0",
"description": "Ikagaka desktop app",
"main": "index.js",
"scripts": {
"prepare": "npm run build && npm run prepare:example",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:ts && npm run build:static",
"build:ts": "tsc",
"build:static": "npm run build:static:electron && npm run build:static:nw",
"build:static:electron": "shx cp src/electron/*.html dist/electron",
"build:static:nw": "npm run build:static:nw:window && npm run build:static:nw:transparent",
"build:static:nw:window": "shx mkdir -p dist/nw-window && shx cp src/nw-window/*.{html,json} dist/nw-window",
"build:static:nw:transparent": "shx mkdir -p dist/nw && shx cp src/nw/*.{html,json} dist/nw",
"watchbuild": "tsc -w",
"lint": "npm run lint:ts",
"lint:ts": "tslint -p .",
"e": "cross-env electron dist/electron",
"edev": "cross-env ELECTRON_RELOAD=1 electron dist/electron",
"edevw": "cross-env WINDOW_MODE=1 npm run edev",
"n": "cross-env nw dist/nw",
"ndev": "cross-env DEV=1 nw dist/nw",
"ndevw": "cross-env DEV=1 nw dist/nw-window",
"prepare:example": "npm run prepare:example:shiolink-adapter && npm run prepare:example:ghost && npm run prepare:example:balloon",
"prepare:example:shiolink-adapter": "node scripts/download-shiolink-adapter.js",
"prepare:example:ghost": "node scripts/installNar.js http://ikagaka.github.io/Ikagaka.demo/vendor/nar/ikaga.nar",
"prepare:example:balloon": "node scripts/installNar.js http://ikagaka.github.io/Ikagaka.demo/vendor/nar/origin.nar",
"clean:example": "shx rm -rf baseware"
},
"author": "narazaka",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ikagaka/ikagaka-desktop.git"
},
"dependencies": {
"cuttlebone": "^0.2.7",
"electron": "^2.0.0",
"encoding-japanese": "^1.0.26",
"ghost-kernel": "^5.0.13",
"nanika-storage": "^3.0.0",
"shiolink-client": "^1.0.2",
"shiori-encode-layer": "^2.0.0",
"shiorif": "^3.0.0",
"shiorijk": "^1.0.0",
"ukagaka-timer-event-source": "^0.2.0"
},
"devDependencies": {
"@types/chokidar": "^1.7.4",
"@types/encoding-japanese": "^1.0.15",
"chokidar": "^2.0.0",
"cross-env": "^5.1.3",
"electron-packager": "^12.0.0",
"electron-reload": "^1.2.2",
"narloader": "^2.0.1",
"node-fetch": "^2.0.0",
"nw": "^0.30.0",
"nw-builder": "^3.5.1",
"shx": "^0.2.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}