-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 774 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 774 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
{
"name": "hailo-node",
"version": "0.1.0",
"description": "Node.js client for HailoRT GenAI server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "jordanskole",
"scripts": {
"generate-proto": "npx ts-node scripts/generate-proto.ts",
"build": "npm run generate-proto && tsc",
"example:chat": "npx ts-node examples/chat.ts",
"start": "node --env-file=.env --import tsx src/main.ts"
},
"dependencies": {
"@hono/node-server": "^1.19.9",
"hono": "^4.11.7",
"protobufjs": "^7.4.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"protobufjs-cli": "^2.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT"
}