-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1008 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 1008 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
{
"name": "http-streaming",
"version": "0.1.0",
"description": "A WebAssembly Component that responds to HTTP requests using the `wasi:http` WIT interface",
"main": "dist/http-streaming.js",
"scripts": {
"generate:types": "rimraf generated/types && jco guest-types wit/ -o generated/types",
"build:tsc": "tsc",
"build:js": "jco componentize -w wit -o dist/http-streaming.wasm dist/http-streaming.js",
"install:deps": "rimraf wit/deps && wash wit fetch",
"build": "npm run install:deps && npm run generate:types && npm run build:tsc && npm run build:js",
"install-and-build": "npm install && npm run build",
"serve": "jco serve dist/http-streaming.wasm",
"dev": "nodemon",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@bytecodealliance/jco": "^1.19.0",
"@types/node": "^24.12.2",
"nodemon": "^3.1.14",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
}
}