-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.26 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.26 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
{
"name": "bundled-rsbuild",
"version": "0.1.0",
"description": "A WebAssembly Component implements a custom interface and uses npm dependencies",
"type": "module",
"main": "demo.js",
"scripts": {
"generate:types": "rimraf generated/types && jco guest-types wit/ -o generated/types",
"build:tsc": "tsc",
"build:bundle": "rslib build",
"build:js": "jco componentize -w wit -o dist/bundled-rsbuild.wasm dist/esm/bundled-rsbuild.js",
"build": "npm run generate:types && npm run build:tsc && npm run build:bundle && npm run build:js",
"transpile": "jco transpile dist/bundled-rsbuild.wasm -o dist/transpiled/",
"demo": "node demo.js",
"start": "npm run install-and-build && npm run transpile && npm run demo",
"install-and-build": "npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@bytecodealliance/jco": "^1.19.0",
"@rsbuild/plugin-node-polyfill": "^1.4.4",
"@rslib/core": "^0.21.3",
"@types/jsonpath": "^0.2.4",
"@types/node": "^24.12.2",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
},
"dependencies": {
"csvtojson": "^2.0.14",
"jsonpath-plus": "^10.4.0",
"remeda": "^2.34.0"
}
}