-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 857 Bytes
/
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
{
"name": "gptscript-operator",
"version": "0.1.7",
"main": "index.js",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc && mkdir -p dist/tools && cp -r src/tools/* dist/tools/",
"clean": "rm -rf dist && pnpm cache clean",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"lint": "npx eslint .",
"format": "npx eslint . --fix"
},
"dependencies": {
"@gptscript-ai/gptscript": "^0.9.5",
"body-parser": "^1.20.3",
"express": "^4.21.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.0",
"@types/node": "^22.9.0",
"@types/ws": "^8.5.13",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"sse.js": "^2.5.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}