forked from yeemachine/kalidokit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
{
"name": "kalidokit",
"version": "1.1.2",
"repository": "github:yeemachine/kalidokit",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite docs",
"prebuild": "rimraf dist",
"build": "vite build && npm run build:lib",
"build:lib": "tsc -p .",
"serve": "vite",
"prepare": "npm run build",
"fmt": "prettier --write 'src/**/*.ts'",
"test": "npm run build && npm run dev",
"lint": "eslint \"src/**/*.ts\" --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"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 calculator 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"
}