forked from moeru-ai/airi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.9 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.9 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@proj-airi/root",
"type": "module",
"version": "0.7.2-beta.3",
"private": true,
"packageManager": "pnpm@10.18.2",
"description": "LLM powered virtual character",
"author": {
"name": "Moeru AI Project AIRI Team",
"email": "airi@moeru.ai",
"url": "https://github.com/moeru-ai"
},
"license": "MIT",
"scripts": {
"postinstall": "npx simple-git-hooks && pnpm run build:packages",
"dev": "pnpm -r -F @proj-airi/stage-web dev",
"dev:docs": "pnpm -rF @proj-airi/docs run dev",
"dev:ui": "pnpm -rF @proj-airi/stage-ui run story:dev",
"dev:web": "pnpm -rF @proj-airi/stage-web run dev",
"dev:server": "pnpm -rF @proj-airi/server-runtime run dev",
"dev:tamagotchi": "pnpm -rF @proj-airi/stage-tamagotchi run dev",
"dev:apps": "pnpm -rF=\"./apps/*\" run --parallel dev",
"dev:packages": "pnpm -rF=\"./packages/*\" --parallel run dev",
"build": "turbo run build -F=\"./packages/*\" -F=\"./apps/*\"",
"build:web": "turbo run build -F @proj-airi/stage-web",
"build:tamagotchi": "pnpm -rF @proj-airi/stage-tamagotchi run app:build",
"build:apps": "turbo run build -F=\"./apps/*\"",
"build:packages": "turbo run build -F=\"./packages/*\"",
"build:crates": "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",
"to-avif": "tsx docs/scripts/avif.ts",
"typecheck": "pnpm -rF=\"./packages/*\" -F=\"./apps/*\" -F=\"./docs\" --parallel typecheck",
"up": "taze -w -r -I -f && pnpm prune && pnpm dedupe",
"nolyfill": "pnpm dlx nolyfill"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@arethetypeswrong/core": "^0.18.2",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@iconify/utils": "^3.0.2",
"@proj-airi/unocss-preset-chromatic": "^1.0.2",
"@types/node": "^24.7.2",
"@unocss/eslint-config": "^66.5.3",
"@unocss/eslint-plugin": "^66.5.3",
"@unocss/preset-mini": "^66.5.3",
"@unocss/preset-web-fonts": "^66.5.3",
"@vitest/coverage-v8": "^3.2.4",
"bumpp": "^10.3.1",
"eslint": "^9.37.0",
"execa": "^9.6.0",
"lint-staged": "^16.2.4",
"publint": "^0.3.14",
"rollup": "^4.52.4",
"simple-git-hooks": "^2.13.1",
"smol-toml": "^1.4.2",
"taze": "^19.7.0",
"tsdown": "^0.15.6",
"tsx": "^4.20.6",
"turbo": "^2.5.8",
"typescript": "~5.9.3",
"uncrypto": "^0.1.3",
"unocss": "^66.5.3",
"unocss-preset-scrollbar": "^3.2.0",
"unplugin-lightningcss": "^0.4.3",
"unplugin-raw": "^0.6.3",
"unplugin-unused": "^0.5.4",
"unplugin-vue": "^7.0.2",
"vite": "^7.1.9",
"vite-plugin-inspect": "^11.3.3",
"vitest": "^3.2.4",
"yaml": "^2.8.1"
},
"workspaces": [
"packages/**",
"plugins/**",
"services/**",
"examples/**",
"docs/**",
"apps/**"
],
"pnpm": {
"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"
},
"onlyBuiltDependencies": [
"@discordjs/opus",
"@ffmpeg-installer/darwin-arm64",
"@parcel/watcher",
"bufferutil",
"electron",
"es5-ext",
"esbuild",
"ffmpeg-static",
"msw",
"onnxruntime-node",
"protobufjs",
"sharp",
"simple-git-hooks",
"spawn-sync",
"utf-8-validate",
"vue-demi"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}