forked from labring/fastgpt-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"name": "fastgpt-plugins",
"module": "index.ts",
"type": "module",
"scripts": {
"prepare": "husky install",
"build": "tsc && bun ./scripts/build.ts",
"build:main": "bun build --env=disable --outfile=dist/index.js --target=node --minify ./src/index.ts",
"build:worker": "bun build --env=disable --outfile=dist/worker.js --target=node --minify ./src/worker/worker.ts",
"start": "NODE_ENV=production node --env-file-if-exists=.env.local dist/index.js",
"dev": "bun run ./scripts/dev.ts",
"test": "vitest run",
"lint": "bun eslint --fix",
"prettier": "prettier --write \"./**/*.{ts,js,json}\"",
"new:tool": "bun ./scripts/newTool/index.ts"
},
"dependencies": {
"@inquirer/prompts": "^7.5.3",
"@scalar/express-api-reference": "^0.8.7",
"@ts-rest/core": "^3.52.1",
"@ts-rest/express": "^3.52.1",
"@ts-rest/open-api": "^3.52.1",
"chalk": "^5.4.1",
"comlink": "^4.4.2",
"date-fns": "^4.1.0",
"express": "^5.1.0",
"json5": "^2.2.3",
"minio": "^8.0.5",
"nanoid": "^5.1.5",
"uuid": "^11.1.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@eslint/json": "^0.11.0",
"@types/bun": "latest",
"@types/express": "^5.0.1",
"@vitest/coverage-v8": "3.1.2",
"bun-plugin-dts": "^0.3.0",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "3.2.4",
"typescript-eslint": "^8.29.1",
"vitest": "3.1.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"workspaces": [
"sdk",
"packages/tool/packages/*"
],
"packageManager": "bun@1.2.2",
"lint-staged": {
"./**/**/*.{ts}": [
"npm run lint",
"npm run prettier"
]
}
}