-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 KB
/
package.json
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
{
"scripts": {
"dev": "tsx src/main.ts",
"build:ci": "bash ./scripts/build.sh",
"build": "rollup -c rollup.config.mjs",
"build:windows": "bash ./scripts/build-bin.sh ./output/windows/main.exe windows-x64",
"build:linux": "bash ./scripts/build-bin.sh ./output/linux/main.linux linux-x64",
"build:mac": "bash ./scripts/build-bin.sh ./output/mac/main.mac mac-x64"
},
"dependencies": {
"@fastify/cors": "^8.5.0",
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^2.1.0",
"@google/generative-ai": "^0.21.0",
"@types/async-retry": "^1.4.9",
"async-retry": "^1.3.3",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"esbuild-plugin-copy": "^2.1.1",
"fastify": "^4.29.0",
"fastify-type-provider-zod": "^4.0.2",
"file-type": "^19.6.0",
"file-type-cjs": "^1.0.7",
"magic-string": "^0.30.14",
"node-fetch": "^3.3.2",
"proxy-agent": "^6.4.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-typescript-paths": "^1.5.0",
"undici": "^5.28.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.10.1",
"esbuild": "^0.24.0",
"nexe": "4.0.0-rc.6",
"rollup": "^4.28.0",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}