-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 5.99 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 5.99 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
{
"name": "@evalops/deixic-code",
"description": "Deixic Code — native Rust coding agent, CLI, TUI, and runtime gateway",
"version": "0.10.91",
"private": false,
"type": "module",
"bin": {
"deixic-code": "bin/deixic-code",
"maestro": "bin/maestro"
},
"maestro": {
"canonicalPackageName": "@evalops/deixic-code",
"packageAliases": [
"@evalops/deixic-code",
"@evalops/maestro"
]
},
"files": [
"bin",
"vendor/maestro",
"skills",
"proto/maestro/v1/protocol-compatibility-manifest.json"
],
"scripts": {
"clean": "node scripts/clean-paths.js bin target",
"build": "cargo build --profile fast-validation --locked -p maestro && node scripts/materialize-native-package.mjs --profile fast-validation",
"build:release": "cargo build --profile release --locked -p maestro && node scripts/materialize-native-package.mjs --profile release",
"build:all": "npm run build",
"check": "npm run check:localization && npm run check:deixic-code-naming && npm run check:workspace-contract && npm run check:protocol-manifest && npm run check:runtime-passport && npm run check:native-runtime-boundary && npm run check:rust-only-runtime && npm run check:helm-probes && npm run check:hook-dispatch && npm run check:session-transfer && cargo check --workspace --all-targets --locked",
"test": "cargo test --workspace --locked",
"test:internal": "node --test test/internal/*.test.mjs",
"lint": "cargo fmt --all --check && cargo clippy --workspace --all-targets --locked -- -D warnings",
"format": "cargo fmt --all",
"start": "./bin/deixic-code",
"cli": "./bin/deixic-code",
"tui": "./bin/deixic-code",
"check:localization": "python3 scripts/check-localization.py && python3 scripts/test_check_localization.py",
"check:deixic-code-naming": "node scripts/check-deixic-code-naming.mjs && node --test scripts/check-deixic-code-naming.test.mjs",
"check:workspace-contract": "node scripts/check-workspace-contract.mjs",
"check:rust-only-runtime": "node scripts/check-rust-only-runtime.mjs && node scripts/check-rust-only-docs.mjs",
"check:helm-probes": "node --test scripts/check-helm-probes.test.mjs",
"verify:runtime-deps": "npm run check:rust-only-runtime",
"check:doc-paths": "node scripts/check-doc-paths.mjs",
"check:hook-dispatch": "node scripts/check-hook-dispatch-coverage.mjs",
"check:session-transfer": "node --test scripts/secure-session-transfer-contract.test.mjs",
"check:hosted-orb-delegation": "node --check scripts/hosted-orb-delegation-acceptance.mjs && node --test scripts/hosted-orb-delegation-acceptance.test.mjs",
"check:protocol-manifest": "node scripts/generate-protocol-compatibility-manifest.mjs --check && node --test scripts/generate-protocol-compatibility-manifest.test.mjs",
"check:runtime-passport": "node --check scripts/run-runtime-conformance.mjs && node --test scripts/generate-runtime-passport.test.mjs scripts/run-runtime-conformance.test.mjs",
"check:macos-signature": "node --check scripts/check-macos-release-signature.mjs && node --test scripts/macos-release-signature.test.mjs scripts/install-native-local.test.mjs",
"check:release-channels": "bash scripts/test-install.sh && node --test scripts/channel-version.test.mjs scripts/verify-staged-release.test.mjs scripts/release-channel-contract.test.mjs scripts/update-lifecycle-contract.test.mjs",
"check:update-lifecycle": "node --check scripts/create-release-metadata.mjs && node --test scripts/update-lifecycle-contract.test.mjs",
"protocol:manifest:generate": "node scripts/generate-protocol-compatibility-manifest.mjs",
"check:scenario-replay-gate": "node scripts/run-scenario-replay-gate.mjs",
"check:docker-runtime-workspaces": "node scripts/check-docker-runtime-workspaces.mjs && node --test scripts/check-docker-runtime-workspaces.test.mjs",
"smoke": "node scripts/smoke-release-native-only.mjs",
"smoke:release-native-only": "node scripts/smoke-release-native-only.mjs",
"smoke:hosted-orb-delegation": "node scripts/hosted-orb-delegation-acceptance.mjs --live",
"smoke:tui": "bash scripts/smoke-tui-interactive.sh",
"screenshots": "uv run scripts/capture-tui.py",
"screenshots:gallery": "uv run --script scripts/capture-tui-suite.py",
"test:screenshots": "uv run scripts/test-capture-tui.py",
"release:check": "npm run check:rust-only-runtime && npm run build:release && npm run smoke:release-native-only",
"release:check:ci": "npm run release:check",
"pr:ready": "node scripts/pr-ready-to-merge.mjs",
"metadata:sync": "node scripts/sync-package-metadata.js",
"metadata:check": "node scripts/sync-package-metadata.js --check",
"version:patch": "node scripts/version.js patch",
"version:minor": "node scripts/version.js minor",
"version:major": "node scripts/version.js major",
"version:sync": "node scripts/sync-versions.js",
"tui-rs:build": "cargo build --release --locked -p maestro-tui",
"tui-rs:check": "cargo check --locked -p maestro-tui",
"tui-rs:test": "cargo test --locked -p maestro-tui",
"runtime-gateway-rs:build": "cargo build --release --locked -p maestro-runtime-gateway",
"maestro-rs:build": "cargo build --release --locked -p maestro",
"check:native-runtime-boundary": "node scripts/check-native-runtime-boundary.mjs && node --test scripts/check-native-runtime-boundary.test.mjs",
"release:verify:published": "node scripts/smoke-registry-install.js",
"release:verify:published:e2e": "node scripts/smoke-published-replay-e2e.js",
"release:verify:published:evidence": "node scripts/verify-published-replay-evidence.js",
"release:deprecate": "node scripts/deprecate-release.js"
},
"keywords": [
"deixic",
"deixic-code",
"maestro",
"evalops",
"ai",
"llm",
"cli",
"tui",
"agent"
],
"author": "EvalOps",
"license": "BUSL-1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/evalops/maestro.git"
},
"packageManager": "npm@11.18.0",
"devDependencies": {
"yaml": "^2.9.1"
}
}