-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.07 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.07 KB
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": "http-handler-hono",
"version": "0.1.0",
"description": "A WebAssembly component HTTP service powered by Hono using the wasi:http WIT interface",
"private": true,
"main": "dist/component.js",
"type": "module",
"scripts": {
"fetch:wit": "wash wit fetch",
"generate:types": "rimraf generated/types && jco guest-types wit/ -o generated/types",
"setup:wit": "npm run fetch:wit && npm run generate:types",
"build:ts": "rolldown -c rolldown.config.mjs",
"build:component": "jco componentize -w wit -o dist/http_handler_hono.wasm dist/component.js",
"build": "npm run setup:wit && npm run build:ts && npm run build:component",
"serve": "jco serve dist/http_handler_hono.wasm",
"dev": "nodemon"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@bytecodealliance/jco-std": "^0.1.0",
"hono": "^4.12.18",
"zod": "^4.0.0"
},
"devDependencies": {
"@bytecodealliance/jco": "^1.15.4",
"nodemon": "^3.1.9",
"rimraf": "^6.1.2",
"rolldown": "^1.0.0-beta.47",
"typescript": "^5.9.3"
}
}