mirror of
https://github.com/trailbaseio/trailbase
synced 2026-04-21 13:37:44 +00:00
29 lines
929 B
JSON
29 lines
929 B
JSON
{
|
|
"name": "docs-example-wasm-guest-ts",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build:wasm": "jco componentize dist/index.js -w node_modules/trailbase-wasm/wit -o dist/component.wasm",
|
|
"build:wasm:aot": "jco componentize dist/index.js -w node_modules/trailbase-wasm/wit --aot -o dist/component.wasm",
|
|
"build": "vite build && npm run build:wasm",
|
|
"check": "tsc --noEmit --skipLibCheck && eslint",
|
|
"dev": "node --experimental-strip-types hot-reload.ts",
|
|
"format": "prettier -w src"
|
|
},
|
|
"dependencies": {
|
|
"trailbase-wasm": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@bytecodealliance/jco": "^1.16.1",
|
|
"@eslint/js": "^9.39.2",
|
|
"@types/node": "^25.2.1",
|
|
"commander": "^14.0.3",
|
|
"eslint": "^9.39.2",
|
|
"nano-spawn": "^2.0.0",
|
|
"prettier": "^3.8.1",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.54.0",
|
|
"vite": "^7.3.1"
|
|
}
|
|
}
|