Files
airi/package.json
T
2025-05-01 16:55:00 +08:00

88 lines
3.0 KiB
JSON

{
"name": "airi-vtuber",
"type": "module",
"private": true,
"packageManager": "pnpm@10.9.0",
"description": "LLM powered virtual character",
"author": {
"name": "Neko Ayaka",
"email": "neko@ayaka.moe",
"url": "https://github.com/nekomeowww"
},
"license": "MIT",
"scripts": {
"postinstall": "npx simple-git-hooks && pnpm packages:build",
"dev": "pnpm -rF=\"./packages/*\" -F=\"./apps/*\" run --parallel dev",
"build": "pnpm -rF=\"./packages/*\" -F=\"./apps/*\" run build",
"apps:web:dev": "pnpm -rF @proj-airi/stage-web run dev",
"apps:web:build": "pnpm -rF @proj-airi/stage-web run build",
"apps:tamagotchi:dev": "pnpm -rF @proj-airi/stage-tamagotchi run app:dev",
"apps:tamagotchi:build": "pnpm -rF @proj-airi/stage-tamagotchi run app:build",
"apps:dev": "pnpm -rF=\"./apps/*\" run --parallel dev",
"apps:build": "pnpm -rF=\"./apps/*\" run build",
"packages:dev": "pnpm -rF=\"./packages/*\" --parallel run dev",
"packages:stub": "pnpm -rF=\"./packages/*\" run --parallel stub",
"packages:build": "pnpm -rF=\"./packages/*\" run build",
"crates:build": "cargo build --workspace",
"test": "vitest --coverage",
"test:run": "vitest run",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"lint:rust": "cargo fmt --check && cargo clippy --workspace",
"typecheck": "pnpm -rF=\"./packages/*\" -F=\"./apps/*\" -F run --parallel typecheck",
"sizecheck": "npx vite-bundle-visualizer",
"up": "taze major -I",
"changelogithub": "changelogithub",
"nolyfill": "pnpm dlx nolyfill"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@antfu/ni": "^24.3.0",
"@iconify/utils": "^2.3.0",
"@types/node": "^22.15.2",
"@unocss/eslint-config": "^66.1.0-beta.12",
"@unocss/eslint-plugin": "^66.1.0-beta.12",
"@vitest/coverage-v8": "^3.1.2",
"bumpp": "^10.1.0",
"changelogithub": "^13.13.0",
"eslint": "^9.25.1",
"lint-staged": "^15.5.1",
"rollup": "^4.40.0",
"simple-git-hooks": "^2.13.0",
"taze": "^19.0.4",
"typescript": "~5.8.3",
"unbuild": "^3.5.0",
"unocss": "^66.1.0-beta.12",
"unocss-preset-scrollbar": "^3.2.0",
"vite": "^6.3.3",
"vite-plugin-inspect": "^11.0.1",
"vitest": "^3.1.2"
},
"workspaces": [
"packages/**",
"services/**",
"examples/**",
"docs/**",
"apps/**"
],
"pnpm": {
"neverBuiltDependencies": [],
"overrides": {
"array-flatten": "npm:@nolyfill/array-flatten@^1.0.44",
"axios": "npm:feaxios@^0.0.23",
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
"isarray": "npm:@nolyfill/isarray@^1.0.44",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1.0.44",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1.0.44",
"side-channel": "npm:@nolyfill/side-channel@^1.0.44",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1.0.44"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}