-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
63
64
{
"name": "airi-vtuber",
"type": "module",
"packageManager": "[email protected]",
"description": "LLM powered virtual character",
"author": {
"name": "Neko Ayaka",
"email": "[email protected]",
"url": "https://github.com/nekomeowww"
},
"license": "MIT",
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"typecheck": "pnpm -r --filter=./packages/* run build",
"dev": "pnpm packages:dev",
"build": "pnpm packages:build",
"dev:tamagotchi": "pnpm packages:dev:tamagotchi",
"packages:dev": "pnpm -r --filter=./packages/* --parallel run dev",
"packages:dev:tamagotchi": "pnpm -r --filter=./packages/* --parallel run dev:tamagotchi",
"packages:stub": "pnpm -r --filter=./packages/* run stub",
"packages:build": "pnpm -r --filter=./packages/* run build",
"packages:publish": "pnpm -r --filter=./packages/* run package:publish",
"test": "vitest --coverage",
"test:run": "vitest run",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks",
"sizecheck": "npx vite-bundle-visualizer"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@antfu/ni": "^23.2.0",
"@cspell/dict-ru_ru": "^2.2.4",
"@types/node": "^22.10.7",
"@unocss/eslint-config": "^65.4.2",
"@unocss/eslint-plugin": "^65.4.2",
"bumpp": "^9.10.1",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-format": "^1.0.1",
"lint-staged": "^15.4.0",
"pnpm": "^9.15.4",
"rollup": "^4.30.1",
"simple-git-hooks": "^2.11.1",
"taze": "^18.2.0",
"typescript": "~5.7.3",
"unbuild": "3.0.0-rc.11",
"unocss": "^65.4.2",
"vite": "^6.0.7",
"vite-plugin-inspect": "^10.0.6",
"vitest": "^2.1.8"
},
"workspaces": [
"packages/*",
"docs"
],
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged && pnpm typecheck"
},
"lint-staged": {
"*": "eslint --fix"
}
}