-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "robokit",
"version": "0.0.4",
"description": "A minimal Electron 'robot' written with Typescript. Runs on a Raspberry Pi",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "tsc -v && yarn build && electron ./dist/main/main.js",
"restart": "electron ./dist/main/main.js",
"rebuild": "electron-rebuild -f -w snowboy",
"version": "./version.sh $npm_package_version",
"test-version": "./version.sh $npm_package_version"
},
"repository": {
"type": "git",
"url": "https://github.com/wwlib/robokit"
},
"keywords": [
"Electron",
"robot",
"raspberry",
"pi",
"typescript"
],
"author": "Andrew Rapo",
"copyright": "Copyright (c) 2018 Andrew Rapo. All Rights Reserved",
"license": "MIT",
"devDependencies": {
"@types/node": "^10.5.2",
"@types/react": "^16.4.6",
"@types/react-bootstrap": "^0.32.10",
"@types/react-dom": "^16.0.6",
"@types/snowboy": "^1.2.0",
"electron": "^2.0.2",
"electron-rebuild": "^1.8.1",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"dependencies": {
"@types/pixi.js": "^4.8.0",
"cognitiveserviceslib": "wwlib/cognitiveserviceslib#v0.0.5",
"ip": "^1.1.5",
"nan": "^2.10.0",
"pixi-animate": "^1.3.3",
"pixi.js": "^4.8.1",
"react": "^16.4.1",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.4.1",
"request-promise": "^4.2.4",
"snowboy": "^1.3.1",
"ws": "^6.1.4",
"ww-music": "^0.0.6"
}
}