-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 858 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 858 Bytes
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": "thothscript-operator",
"version": "0.1.10",
"main": "index.js",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.20.0",
"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.8",
"body-parser": "^2.2.2",
"express": "^5.2.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.6",
"@types/node": "^25.0.9",
"@types/ws": "^8.18.1",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"sse.js": "^2.7.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}