-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
58 lines (58 loc) · 1.64 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
{
"private": false,
"name": "@handtracking.io/yoha",
"version": "1.2.0",
"main": "dist/entry.js",
"types": "dist/entry.d.ts",
"license": "MIT",
"keywords": [
"handtracking",
"hand detection",
"hand pose",
"hand",
"tracking",
"ai",
"artificial intelligence"
],
"repository": {
"url": "https://github.com/handtracking-io/yoha",
"type": "git"
},
"files": [
"dist",
"models"
],
"scripts": {
"start": "webpack serve",
"transpile": "yarn tsc --declaration",
"api_extractor": "yarn api-extractor run",
"api_documenter": "yarn api-documenter markdown --input-folder api_extractor_misc --output-folder docs",
"docs": "yarn lint && yarn transpile && yarn api_extractor && yarn api_documenter",
"lint": "yarn eslint src && yarn eslint example",
"prepack": "yarn lint && yarn transpile"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.14.0",
"@microsoft/api-extractor": "^7.19.3",
"@types/emscripten": "^1.39.6",
"@types/three": "^0.132.1",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^8.8.0",
"html-webpack-plugin": "^5.3.2",
"meshline": "^2.0.3",
"ts-loader": "^9.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.2.4",
"webpack": "^5.55.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.3.0"
},
"dependencies": {
"@tensorflow/tfjs-backend-wasm": "^3.13.0",
"@tensorflow/tfjs-backend-webgl": "^3.12.0",
"@tensorflow/tfjs-converter": "^3.12.0",
"@tensorflow/tfjs-core": "^3.12.0"
}
}