-
-
Notifications
You must be signed in to change notification settings - Fork 426
/
package.json
52 lines (52 loc) · 1.15 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": "mind-ar",
"version": "1.2.5",
"description": "web augmented reality framework",
"main": "index.js",
"scripts": {
"dev": "vite --config vite.config.dev.js --host",
"watch": "vite build --watch --config vite.config.dev.js",
"build-dev": "vite build --config vite.config.dev.js",
"build": "vite build --config vite.config.prod.js"
},
"engines": {
"node": ">=14.0.0"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/hiukim/mind-ar-js"
},
"keywords": [
"web AR",
"aframe",
"web augmented reality",
"image tracking",
"face tracking",
"tensorflowjs",
"mediapipe"
],
"author": "hiukim",
"license": "MIT",
"dependencies": {
"@mediapipe/tasks-vision": "^0.10.9",
"@msgpack/msgpack": "^2.8.0",
"@tensorflow/tfjs": "^4.16.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"canvas": "^2.10.2",
"mathjs": "^11.6.0",
"ml-matrix": "^6.10.4",
"svd-js": "^1.1.1",
"tinyqueue": "^2.0.3"
},
"peerDependencies": {
"three": ">=0.136.0"
},
"files": [
"dist/",
"src/"
],
"devDependencies": {
"vite": "^5.0.11"
}
}