forked from hiukim/mind-ar-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "mind-ar",
"version": "1.1.5",
"description": "web augmented reality framework",
"main": "index.js",
"scripts": {
"watch": "webpack --watch --config webpack.config.dev.cjs",
"build": "webpack --config webpack.config.prod.cjs"
},
"engines": {
"node": ">=12.0.0"
},
"type": "commonjs",
"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/face_mesh": "^0.4.1633559619",
"@msgpack/msgpack": "^1.12.2",
"@tensorflow/tfjs": "^3.13.0",
"ml-matrix": "^6.6.0",
"svd-js": "^1.1.1",
"three": "^0.136.0",
"tinyqueue": "^2.0.3"
},
"devDependencies": {
"css-loader": "^5.1.1",
"html-loader": "^2.1.1",
"sass": "^1.51.0",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0",
"worker-loader": "^2.0.0"
}
}