forked from yeemachine/kalidokit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "kalidokit",
"version": "1.1.1",
"repository": "github:yeemachine/kalidokit",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite docs",
"prebuild": "rm -rf dist lib",
"build": "vite build && npm run build:lib",
"build:lib": "tsc -p .",
"serve": "vite",
"prepare": "npm run build",
"fmt": "prettier --write 'src/**/*.ts'"
},
"dependencies": {
"@mediapipe/camera_utils": "^0.3.1632432234",
"@mediapipe/drawing_utils": "^0.3.1620248257",
"@mediapipe/holistic": "^0.5.1635989137",
"@pixiv/three-vrm": "^0.6.7",
"three": "^0.133.0"
},
"devDependencies": {
"prettier": "^2.4.1",
"rollup-plugin-friendly-type-imports": "^1.0.1",
"typescript": "^4.4.4",
"vite": "2.6.0",
"vite-plugin-banner": "0.1.3",
"vite-plugin-ts": "^1.1.8"
},
"prettier": {
"tabWidth": 4,
"trailingComma": "es5",
"printWidth": 120,
"singleQuote": false
},
"description": "Blendshape and kinematics solver for Mediapipe/Tensorflow.js Face, Eyes, Pose, and Finger tracking models.",
"bugs": {
"url": "https://github.com/yeemachine/kalidokit/issues"
},
"homepage": "https://github.com/yeemachine/kalidokit#readme",
"keywords": [
"mediapipe",
"tensorflow",
"face-tracking",
"pose-tracking",
"finger-tracking",
"detection"
],
"author": "yeemachine",
"license": "MIT",
"year": "2020-2021"
}