-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 885 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 885 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": "rosepack-example-http",
"version": "0.0.0",
"private": true,
"description": "A Hono HTTP interaction endpoint built with rosepack and Oceanic.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vp dev",
"register": "node --env-file-if-exists=.env dist/rosepack.mjs register",
"register:dry": "node --env-file-if-exists=.env dist/rosepack.mjs register --dry-run",
"start": "node --env-file-if-exists=.env dist/index.mjs",
"start:source": "node --env-file-if-exists=.env --experimental-strip-types src/index.ts"
},
"dependencies": {
"@hono/node-server": "2.0.10",
"hono": "4.12.30",
"oceanic.js": "1.14.0",
"rosepack": "workspace:*"
},
"devDependencies": {
"@types/node": "26.1.1",
"typescript": "7.0.2",
"vite": "catalog:",
"vite-plus": "catalog:"
},
"engines": {
"node": ">=22"
}
}