-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "@vtuber/monorepo",
"private": true,
"packageManager": "pnpm@9.3.0",
"directories": {
"doc": "docs"
},
"author": {
"name": "YunYouJun",
"url": "https://www.yunyoujun.cn",
"email": "me@yunyoujun.cn"
},
"license": "ISC",
"homepage": "https://vtuber.yunyoujun.cn",
"repository": {
"type": "git",
"url": "git+https://github.com/YunYouJun/vtuber.git"
},
"bugs": {
"url": "https://github.com/YunYouJun/vtuber/issues"
},
"scripts": {
"dev": "pnpm -C packages/client dev",
"live2d:dev": "pnpm -C packages/live2d dev",
"build": "pnpm run build:client",
"serve": "pnpm -C packages/client run preview",
"build:client": "pnpm -C packages/client build",
"docs:dev": "pnpm -C docs dev",
"docs:build": "pnpm -C docs build",
"docs:serve": "pnpm -C docs serve",
"lint": "eslint ."
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.1",
"@unocss/eslint-plugin": "^0.61.0",
"eslint": "^9.5.0",
"eslint-plugin-format": "^0.1.2",
"typescript": "^5.4.5"
}
}