-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.68 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
59
60
61
62
{
"name": "@cloudgeek/vitar",
"version": "0.1.11",
"private": false,
"description": "Live real-time avatar",
"bugs": "https://github.com/LarchLiu/vitar/issues",
"keywords": [
"vue",
"avatar",
"vue-avatar",
"live-avatar",
"real-time"
],
"license": "MIT",
"author": "alex <larch.liu@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/LarchLiu/vitar.git"
},
"main": "dist/vitar.cjs.js",
"module": "dist/vitar.es.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"ci:publish": "zx scripts/publish.mjs",
"dev": "vite --port 3333 --open --host",
"build": "vite build && vue-tsc --emitDeclarationOnly && mv dist/lib dist/types && rm -r dist/test && rm -r dist/src",
"lint": "eslint . --ext=.ts,.vue",
"prepublishOnly": "npm run build",
"release": "zx scripts/release.mjs",
"test": "vitest"
},
"style": "./dist/index.css",
"dependencies": {
"@mediapipe/camera_utils": "^0.3.1632432234",
"@mediapipe/drawing_utils": "^0.3.1620248257",
"@mediapipe/face_mesh": "^0.4.1633559619",
"@vueuse/core": "^8.5.0",
"kalidokit": "^1.1.5",
"pixi-live2d-display": "^0.3.1",
"pixi.js": "^6.2.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.23.1",
"@types/node": "^17.0.21",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/test-utils": "^2.0.0",
"bumpp": "^7.1.1",
"eslint": "^8.16.0",
"jsdom": "^19.0.0",
"typescript": "^4.6.4",
"unplugin-auto-import": "^0.7.2",
"vite": "^2.9.9",
"vite-plugin-css-injected-by-js": "^1.5.0",
"vitest": "^0.12.9",
"vue": "^3.2.36",
"vue-tsc": "^0.34.16",
"zx": "^6.1.0"
}
}