-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "live2d-motionsync",
"version": "0.0.4",
"type": "module",
"private": false,
"license": "MIT",
"description": "Live2D Motionsync, a lip-sync library for Live2D models.",
"repository": {
"type": "git",
"url": "https://github.com/liyao1520/live2d-motionSync.git"
},
"keywords": [
"live2d",
"motionsync",
"lip-sync"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
},
"./stream": {
"types": "./dist/stream.d.ts",
"require": "./dist/stream.cjs.js",
"import": "./dist/stream.es.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "cd examples && npm run dev",
"build": "vite build",
"predeploy": "cd examples && npm run build",
"deploy": "gh-pages -d examples/dist"
},
"devDependencies": {
"gh-pages": "^6.3.0",
"tsx": "^4.17.0",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.4.0"
},
"dependencies": {}
}