-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 5.58 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 5.58 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@tangle-network/braid",
"version": "0.1.1",
"description": "A universal terminal interface for portable agent profiles",
"type": "module",
"bin": {
"braid": "./dist/bin/braid.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./protocol": {
"types": "./dist/views/headless/protocol.d.ts",
"import": "./dist/views/headless/protocol.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md",
"THIRD_PARTY_LICENSES.json",
"THIRD_PARTY_NOTICES.md"
],
"engines": {
"node": ">=22.19.0"
},
"os": [
"darwin",
"linux"
],
"packageManager": "pnpm@11.18.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tangle-network/braid.git"
},
"scripts": {
"build": "node scripts/clean.mjs && tsc -p tsconfig.build.json && node scripts/build-startup.mjs",
"capture:w0": "pnpm run build && node scripts/capture-w0.mjs",
"capture:visual": "pnpm run build && node scripts/capture-visual.mjs",
"capture:connections": "pnpm run build && node scripts/capture-connections.mjs",
"capture:demo:live": "pnpm run build && node scripts/live-demo.mjs",
"check": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run boundaries && pnpm run dependencies:check && pnpm run attribution && pnpm run licenses:check && pnpm run test && pnpm run test:live:required:self && pnpm run test:live:bridge:matrix && pnpm run check:release",
"clean": "node scripts/clean.mjs",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"boundaries": "node scripts/check-boundaries.mjs && node scripts/check-module-cycles.mjs --self-test",
"dependencies:check": "node scripts/check-dependencies.mjs",
"attribution": "node scripts/check-attribution.mjs",
"licenses:generate": "node scripts/generate-licenses.mjs",
"licenses:check": "node scripts/generate-licenses.mjs --check",
"test": "node scripts/test.mjs",
"test:unit": "pnpm run test -- --scope unit",
"test:property": "node scripts/property/run.mjs --mode ci --runs 1000",
"test:property:soak": "node scripts/property/run.mjs --mode soak --runs 100000",
"test:contract": "pnpm run test -- --scope contract",
"test:coordination": "pnpm run test -- --scope coordination",
"test:rpc": "pnpm run test -- --scope rpc",
"test:rpc:packed": "pnpm run build && node scripts/test-rpc-packed.mjs",
"test:virtual-terminal": "pnpm run test -- --scope virtual-terminal",
"test:pty": "pnpm run build && node scripts/test-pty.mjs",
"test:storage": "pnpm run test -- --scope storage",
"test:crash": "pnpm run test -- --scope crash",
"test:security": "pnpm run test -- --scope security && pnpm run boundaries && pnpm run dependencies:check && pnpm run attribution",
"test:performance": "pnpm run build && pnpm run test -- --scope performance && node scripts/performance/run.mjs",
"test:live": "pnpm test:live:bridge && pnpm test:live:tangle && pnpm test:live:supervisor && pnpm test:live:analysis",
"test:live:bridge": "node scripts/live-bridge.mjs",
"test:live:bridge:release": "node scripts/live-bridge-release.mjs",
"test:live:bridge:matrix": "node scripts/live-bridge/matrix.mjs",
"test:live:required:self": "pnpm run build && node --test scripts/live-required.test.mjs",
"test:live:tangle": "node scripts/live-required.mjs live-tangle",
"test:live:tangle:sandbox:stress": "pnpm run build && node scripts/live-required/tangle-sandbox-braid-soak.mjs",
"test:live:tangle:sandbox:execution": "pnpm run build && node scripts/live-required/tangle-sandbox-braid-execution-soak.mjs",
"test:live:supervisor": "node scripts/live-required.mjs live-supervisor",
"test:live:analysis": "node scripts/live-required.mjs live-analysis",
"verify:live-core": "node scripts/live-core/verify-pair.mjs",
"test:eval": "pnpm run build && node scripts/eval/run.mjs",
"test:install": "pnpm run test:package",
"test:capture": "pnpm run capture:w0",
"test:upstream": "node scripts/release/verify-upstream.mjs",
"test:package": "pnpm run build && node scripts/verify-package.mjs",
"pack:check": "pnpm pack --pack-destination .tmp",
"check:release": "node scripts/check-release.mjs",
"release:check": "pnpm run check:release",
"release:prepare": "node scripts/release/prepare-candidate.mjs",
"release:collect": "node scripts/release/collect-release-evidence.mjs",
"release:record-publication": "node scripts/release/record-publication.mjs",
"release:smoke": "node scripts/release/smoke-package.mjs",
"verify:candidate": "node scripts/verify-candidate.mjs",
"verify:release": "node scripts/verify-release.mjs",
"proof:w0": "node scripts/proof-package.mjs w0",
"proof:w6": "node scripts/proof-package.mjs w6"
},
"dependencies": {
"@dataiku/uv": "0.12.0",
"@earendil-works/pi-tui": "0.84.1",
"@napi-rs/keyring": "1.3.0",
"@tangle-network/agent-eval": "0.145.3",
"@tangle-network/agent-interface": "0.47.0",
"@tangle-network/agent-provider-cli-bridge": "0.6.0",
"@tangle-network/agent-provider-tangle": "0.6.3",
"@tangle-network/agent-runtime": "0.132.12",
"@tangle-network/sandbox": "0.21.1",
"better-sqlite3-multiple-ciphers": "13.0.3",
"chalk": "6.0.0",
"koffi": "3.1.4"
},
"devDependencies": {
"@biomejs/biome": "2.5.7",
"@types/node": "26.2.0",
"@xterm/headless": "6.0.0",
"esbuild": "0.28.2",
"node-pty": "1.1.0",
"typescript": "7.0.2"
}
}