|
4 | 4 | "description": "", |
5 | 5 | "main": "./src/server.ts", |
6 | 6 | "scripts": { |
7 | | - "start": "tsx ./src/server.ts" |
| 7 | + "start": "tsx ./src/server.ts", |
| 8 | + "build": "rollup -c rollup.config.mjs", |
| 9 | + "build:win": "nexe ./output/server.js -o ./output/server.exe -t windows-x64-14.15.3", |
| 10 | + "build:linux": "nexe ./output/server.js -o ./output/server.linux -t linux-x64-14.15.3", |
| 11 | + "build:mac": "nexe ./output/server.js -o ./output/server.mac -t mac-x64-14.15.3" |
8 | 12 | }, |
9 | 13 | "keywords": [], |
10 | 14 | "author": "zhzluke96", |
11 | 15 | "license": "AGPL-3.0-only", |
12 | 16 | "dependencies": { |
13 | 17 | "@anthropic-ai/vertex-sdk": "^0.4.0", |
14 | | - "@types/node": "^20.14.9", |
15 | 18 | "dotenv": "^16.4.5", |
16 | 19 | "fastify": "^4.28.1", |
17 | 20 | "fastify-sse-v2": "^4.0.0", |
18 | 21 | "http-proxy-agent": "^7.0.2", |
19 | 22 | "https-proxy-agent": "^7.0.5", |
| 23 | + "node-fetch": "^3.3.2" |
| 24 | + }, |
| 25 | + "devDependencies": { |
| 26 | + "@babel/preset-env": "^7.24.7", |
| 27 | + "@rollup/plugin-commonjs": "^26.0.1", |
| 28 | + "@rollup/plugin-json": "^6.1.0", |
| 29 | + "@rollup/plugin-node-resolve": "^15.2.3", |
| 30 | + "@rollup/plugin-replace": "^5.0.7", |
| 31 | + "@rollup/plugin-typescript": "^11.1.6", |
| 32 | + "@types/node": "^20.14.9", |
| 33 | + "esbuild": "^0.23.0", |
| 34 | + "magic-string": "^0.30.10", |
| 35 | + "nexe": "4.0.0-rc.6", |
| 36 | + "rollup": "^4.18.0", |
| 37 | + "rollup-plugin-babel": "^4.4.0", |
| 38 | + "rollup-plugin-esbuild": "^6.1.1", |
| 39 | + "rollup-plugin-typescript2": "^0.36.0", |
20 | 40 | "tslib": "^2.6.3", |
21 | 41 | "tsx": "^4.16.2", |
22 | 42 | "typescript": "^5.5.3" |
|
0 commit comments