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
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"name": "fastgpt-plugins",
"version": "0.6.0",
"module": "index.ts",
"type": "module",
"scripts": {
"new:tool": "bun ./scripts/newTool/index.ts",
"install:plugins": "bun ./scripts/install-all.ts",
"dev": "bun --cwd runtime dev",
"test": "vitest run",
"build:runtime": "bun --cwd runtime build",
"start": "NODE_ENV=production node --env-file-if-exists=runtime/.env.local dist/index.js",
"build:pkg": "bun tsc && bun --cwd modules/tool build",
"build:sdk": "bun run --cwd sdk build",
"build:marketplace": "bun run build:pkg && bun ./modules/tool/build/build-json.ts",
"deploy:marketplace-data": "bun --env-file=.env.marketplace.local ./scripts/deploy-marketplace.ts",
"prepare": "husky install",
"lint": "node_modules/.bin/eslint --fix",
"prettier": "prettier --write \"./**/*.{ts,js,json}\""
},
"devDependencies": {
"@inquirer/prompts": "^7.5.3",
"chalk": "^5.4.1",
"date-fns": "^4.1.0",
"json5": "^2.2.3",
"@eslint/js": "^9.24.0",
"@eslint/json": "^0.11.0",
"@types/bun": "latest",
"@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.9.3",
"zod": "^4"
},
"workspaces": [
"sdk",
"lib",
"modules/*",
"runtime"
],
"packageManager": "bun@1.3.7",
"lint-staged": {
"./**/**/*.{ts}": [
"npm run lint",
"npm run prettier",
"git add ."
]
},
"dependencies": {
"@fastgpt-sdk/storage": "^0.6.14",
"@hono/zod-openapi": "^1.2.0",
"cheerio": "^1.1.0",
"hono": "^4.11.5",
"marked": "^17.0.1",
"proxy-agent": "^6.5.0"
}
}