mirror of
https://github.com/labring/FastGPT.git
synced 2026-03-24 01:08:06 +08:00
* doc * wip(next): upgrade next16 with next-rspack to build (#6501) * wip(next): upgrade next16 with next-rspack to build * wip: fix tsconfig path alias, bump various deps * fix: test action pnpm version, immer dep * fix: only use Rspack for develop environment * lock * fix: dataset choice hint (#6514) * fix: dataset choice hint * fix: regex replaceVarible remove useless match group * fix: type check (#6515) * test: perfect test cases for replaceVarible function in like case (#6516) --------- Co-authored-by: archer <545436317@qq.com> Co-authored-by: Ryo <whoeverimf5@gmail.com>
39 lines
859 B
JSON
39 lines
859 B
JSON
{
|
|
"name": "sandbox",
|
|
"version": "5.0.0",
|
|
"description": "FastGPT Code Sandbox - Bun + Hono + 统一子进程模型",
|
|
"author": "",
|
|
"private": true,
|
|
"license": "UNLICENSED",
|
|
"scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"start": "bun run src/index.ts",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"engines": {
|
|
"node": "20.x",
|
|
"pnpm": "9.x"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.7.9",
|
|
"crypto-js": "^4.2.0",
|
|
"dayjs": "^1.11.13",
|
|
"dotenv": "^17.3.1",
|
|
"hono": "^4.7.6",
|
|
"lodash": "^4.17.21",
|
|
"moment": "^2.30.1",
|
|
"qs": "^6.13.1",
|
|
"tiktoken": "1.0.17",
|
|
"uuid": "^9.0.1",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.2.4",
|
|
"@types/node": "^20.14.2",
|
|
"vitest": "^3.0.9",
|
|
"@vitest/coverage-v8": "^3.0.9",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|