-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 851 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 851 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
{
"name": "@nexu/controller",
"version": "0.0.1",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && node scripts/bundle-runtime-plugins.mjs",
"bundle-runtime-plugins": "node scripts/bundle-runtime-plugins.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run tests",
"generate-openapi": "node --conditions=development --import tsx scripts/generate-openapi.ts"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"@hono/zod-openapi": "^0.18.4",
"@nexu/shared": "workspace:*",
"clawhub": "0.8.0",
"dotenv": "^16.6.1",
"hono": "^4.7.5",
"lowdb": "^7.0.1",
"pdf-parse": "^2.4.5",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.4",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
}
}