-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.8 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
{
"name": "web-demo-suit",
"version": "0.0.1",
"description": "",
"main": "dist/electron.js",
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html --public-url .",
"dev:electron": "npm run _compile-electron-ts && concurrently \"npm run dev\" \"wait-on http://localhost:1234 && electron . \"",
"build:electron": "npm run _clean && npm run _compile-electron-ts && npm run build && electron-builder -mw",
"_clean": "rm -rf .cache dist/ electron-dist/",
"_compile-electron-ts": "tsc --outDir dist src/electron.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takanakahiko/web-demo-suit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/takanakahiko/web-demo-suit/issues"
},
"homepage": "https://github.com/takanakahiko/web-demo-suit#readme",
"dependencies": {
"@tensorflow-models/posenet": "^2.2.1",
"@tensorflow/tfjs": "^2.7.0",
"@tensorflow/tfjs-backend-wasm": "^2.7.0",
"electron-is-dev": "^1.2.0",
"kalmanjs": "^1.1.0",
"parcel-bundler": "^1.12.4"
},
"devDependencies": {
"@types/node": "^14.14.10",
"concurrently": "^5.3.0",
"electron": "^15.5.5",
"electron-builder": "^22.9.1",
"typescript": "^3.9.3",
"wait-on": "^5.2.0"
},
"build": {
"appId": "me.takanakahiko.web-demo-suit",
"files": [
"src/electron.js",
"assets/**/*",
"dist/**/*"
],
"directories": {
"buildResources": "dist",
"output": "electron-dist"
},
"mac": {
"target": "dmg",
"icon": "assets/logo.png",
"entitlements": "assets/entitlements.plist",
"entitlementsInherit": "assets/entitlements.plist"
},
"win": {
"target": "nsis",
"icon": "assets/logo.png"
}
}
}