-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.68 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.68 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
38
{
"private": true,
"workspaces": [
"packages/clients/js",
"packages/js",
"packages/typescript",
"packages/vscode"
],
"scripts": {
"canary": "bun scripts/canary.ts",
"check": "cargo clippy --all-features --all-targets --workspace && bun run --parallel --filter \"*\" check",
"clean": "rm -rf .tangram node_modules target",
"cloud:up": "nu scripts/cloud/up.nu",
"cloud:down": "nu scripts/cloud/down.nu",
"cloud:init": "nu scripts/cloud/init.nu",
"cloud:deinit": "nu scripts/cloud/deinit.nu",
"cloud:server": "nu scripts/cloud/server.nu",
"cloud:runner": "nu scripts/cloud/runner.nu",
"format": "cargo fmt --all && bun run --parallel --filter \"*\" format",
"test": "nu packages/cli/test.nu $@ && cargo nextest run --no-fail-fast --workspace && bun run --parallel --filter \"*\" test",
"tg": "cargo run --all-features -- -c .config/tangram/config.json -d .tangram -m client",
"tgr": "cargo run --release -- -c .config/tangram/config.json -d .tangram -m client",
"tgrs": "cargo run --release -- -c .config/tangram/config.json -d .tangram -m server",
"tgrsx": "cargo run --release -- -c .config/tangram/config.json -d .tangram -m server run -b",
"tgrx": "cargo run -- -c .config/tangram/config.json -d .tangram -m client run -b",
"tgs": "cargo run -- -c .config/tangram/config.json -d .tangram -m server",
"tgsx": "cargo run -- -c .config/tangram/config.json -d .tangram -m server run -b",
"tgx": "cargo run -- -c .config/tangram/config.json -d .tangram -m client run -b"
},
"dependencies": {
"@types/bun": "^1.3.10",
"@typescript/native-preview": "^7.0.0-dev.20260305.1",
"esbuild": "^0.27.3",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"typescript": "^5.9.3"
}
}