-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.3 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.3 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
34
35
36
37
{
"name": "sample-wasi-http-js",
"version": "0.1.0",
"description": "Sample project demonstratingu JS project targeting WASI http",
"homepage": "https://github.com/bytecodealliance/sample-wasi-http-js",
"license": "(Apache-2.0 WITH LLVM-exception)",
"author": "Tomasz Andrzejak",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bytecodealliance/sample-wasi-http-js"
},
"scripts": {
"bundle": "rollup -c",
"build": "npm run bundle && componentize-js --aot --wit wit -o dist/$npm_package_name.wasm dist/bundle.js",
"build:debug": "npm run bundle && componentize-js --use-debug-build --runtime-args \"--enable-script-debugging\" --wit wit-debug -o dist/$npm_package_name.wasm dist/bundle.js",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css}\"",
"format-ci": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css}\"",
"lint": "eslint src/**/*.js",
"test": "vitest --run"
},
"devDependencies": {
"@bytecodealliance/componentize-js": "*",
"@rollup/plugin-node-resolve": "*",
"@eslint/js": "^9.24.0",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"just-install": "*",
"prettier": "^3.5.3",
"rollup": "^4.37.0",
"vitest": "^3.1.1",
"wait-on": "^8.0.3"
},
"dependencies": {
"itty-router": "^5.0.18"
}
}