-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
21 lines (21 loc) · 947 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.14",
"typescript": "^5.7.2"
},
"scripts": {
"canary": "bun scripts/canary.ts",
"check": "cargo clippy --workspace --all-targets && bun run --filter \"*\" check",
"clean": "rm -rf node_modules target",
"format": "cargo fmt --all && bun run --filter \"*\" format",
"test": "cargo test --workspace && bun run --filter \"*\" test",
"tg": "cargo run -- -m client",
"tgs": "cargo run -- -m server",
"tgo": "cargo build --target aarch64-unknown-linux-gnu && orb sh -c './target/aarch64-unknown-linux-gnu/debug/tangram $@' -- -m client",
"tgor": "cargo build --release --target aarch64-unknown-linux-gnu && orb sh -c './target/aarch64-unknown-linux-gnu/release/tangram $@' -- -m client",
"tgr": "cargo run --release -- -m client",
"tgrs": "cargo run --release -- -m server"
},
"workspaces": ["packages/compiler", "packages/runtime", "packages/vscode"]
}