-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.44 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.44 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
{
"name": "wasm-component-examples",
"version": "1.0.0",
"private": true,
"type": "module",
"workspaces": [
"examples/*"
],
"packageManager": "npm@11.0.0",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "turbo run build-wasm --log-order=grouped --continue=dependencies-successful",
"build-fs": "turbo run fs-compose#build-wasm --log-order=grouped",
"start-fs": "npm run -w examples/fs-compose start-wasmtime",
"check": "turbo run check --log-order=grouped --continue=dependencies-successful",
"pack": "turbo run pack --log-order=grouped --continue=dependencies-successful",
"lint": "eslint .",
"format": "eslint . --fix",
"clean": "git clean -fdx -e '.env.*'",
"setup-linux": "npm run setup-linux:rust && npm run setup-linux:binstall && npm run setup-linux:binstall:packages",
"setup-linux:rust": "curl https://sh.rustup.rs -sSf | sh -s -- --profile minimal -y",
"setup-linux:binstall": "curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash",
"setup-linux:binstall:packages": ". \"$HOME/.cargo/env\" && cargo binstall wasmtime-cli wkg wasm-tools wac-cli -y"
},
"devDependencies": {
"@ni/eslint-config-javascript": "^5.1.2",
"@ni/eslint-config-typescript": "^5.0.3",
"turbo": "^2.8.20"
}
}