-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
52 lines (52 loc) · 1.87 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
{
"name": "wx-tfjs-demo",
"version": "1.0.0",
"description": "Demo of running tensorflow.js in wechat miniprogram",
"scripts": {
"clean": "rimraf miniprogram/chunks miniprogram/**/*.js",
"make:profile": "node ./profile.js",
"make:custom": "node ./node_modules/@tensorflow/tfjs/dist/tools/custom_module/cli.js --config tfjs_config.json",
"dev": "npm run clean && rollup -c --watch",
"dev:custom": "npm run clean && rollup -c --custom --watch",
"build": "npm run clean && rollup -c",
"build:custom": "npm run clean && rollup -c --custom"
},
"keywords": [],
"author": "HunterXuan",
"license": "MIT",
"dependencies": {
"@msgpack/msgpack": "^2.7.1",
"@tensorflow-models/body-pix": "^2.2.0",
"@tensorflow-models/coco-ssd": "^2.2.2",
"@tensorflow-models/face-landmarks-detection": "^0.0.3",
"@tensorflow-models/handpose": "^0.0.7",
"@tensorflow-models/mobilenet": "^2.1.0",
"@tensorflow-models/posenet": "^2.2.2",
"@tensorflow/tfjs-backend-webgl": "3.5.0",
"@tensorflow/tfjs-converter": "3.5.0",
"@tensorflow/tfjs-core": "3.5.0",
"abab": "^2.0.6",
"fetch-wechat": "^0.0.3",
"ml-matrix": "^6.8.0",
"text-encoder": "^0.0.4",
"three-platformize": "^1.129.0",
"tinyqueue": "^2.0.3"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-sucrase": "^4.0.0",
"@tensorflow/tfjs": "^3.9.0",
"esbuild": "^0.12.25",
"miniprogram-api-typings": "^3.4.3",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-esbuild": "^4.5.0",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.2"
}
}