-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.12 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.12 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
{
"name": "http-server-with-hono",
"version": "0.0.1",
"description": "A wasmCloud component using Hono for HTTP routing based on wasi:http.",
"main": "dist/index.bundled.js",
"scripts": {
"generate:types": "rimraf generated/types && jco guest-types wit/ -o generated/types",
"build:ts": "rollup -c",
"build:js": "jco componentize -w wit -o dist/http_server_with_hono.wasm dist/index.bundled.js",
"build": "npm run install:deps && npm run generate:types && npm run build:ts && npm run build:js",
"install-and-build": "npm install && npm run build",
"install:deps": "rimraf wit/deps && wash wit fetch",
"serve": "jco serve dist/http_server_with_hono.wasm",
"dev": "nodemon",
"test": "echo \"Error: no test specified\" && exit 0"
},
"dependencies": {
"hono": "^4.12.18"
},
"devDependencies": {
"@bytecodealliance/jco": "^1.19.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.12.3",
"nodemon": "^3.1.14",
"rimraf": "^6.1.3",
"rollup": "^4.60.3",
"tslib": "^2.8.1",
"typescript": "^6.0.3"
}
}