规定数据类型

This commit is contained in:
2026-04-24 01:45:41 +08:00
parent d1943f564a
commit 35eff3faf6
86 changed files with 3809 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "sillytavern-repalice",
"version": "1.0.0",
"description": "A SillyTavern-inspired AI chat application with custom features",
"private": true,
"workspaces": [
"shared",
"server",
"client"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd server && npm run start:dev",
"dev:client": "cd client && npm run dev",
"build": "npm run build --workspaces",
"build:server": "cd server && npm run build",
"build:client": "cd client && npm run build",
"start": "cd server && npm run start:prod",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:build": "docker-compose build",
"docker:logs": "docker-compose logs -f"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}