airi/package.json
2024-12-23 10:40:13 +08:00

62 lines
1.7 KiB
JSON

{
"name": "airi-vtuber",
"type": "module",
"packageManager": "pnpm@9.15.1",
"description": "LLM powered virtual character",
"author": {
"name": "Neko Ayaka",
"email": "neko@ayaka.moe",
"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",
"packages:dev": "pnpm -r --filter=./packages/* --parallel run dev",
"packages:stub": "pnpm -r --filter=./packages/* run stub",
"packages:build": "pnpm -r --filter=./packages/* run build",
"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.12.0",
"@antfu/ni": "^0.23.2",
"@cspell/dict-ru_ru": "^2.2.4",
"@types/node": "^22.10.2",
"@unocss/eslint-config": "^0.65.2",
"@unocss/eslint-plugin": "^0.65.2",
"bumpp": "^9.9.2",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-format": "^0.1.3",
"https-localhost": "^4.7.1",
"lint-staged": "^15.2.11",
"pnpm": "^9.15.1",
"rollup": "^4.29.1",
"simple-git-hooks": "^2.11.1",
"taze": "^0.18.0",
"typescript": "~5.7.2",
"unbuild": "3.0.0-rc.11",
"unocss": "^0.65.2",
"vite": "^6.0.5",
"vite-plugin-inspect": "^0.10.6",
"vitest": "^2.1.8"
},
"workspaces": [
"packages/*",
"docs"
],
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}