-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 3.77 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 3.77 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
{
"name": "rlmcode",
"version": "0.0.3",
"private": true,
"license": "MIT",
"type": "module",
"exports": {
".": "./src/core/sdk.ts",
"./package.json": "./package.json"
},
"scripts": {
"chat": "bun --env-file=.env src/tui/chat.tsx",
"emit": "bun --env-file=.env smoke-emit.ts",
"motel": "bun --cwd ../motel run src/motel.ts server",
"motel:tui": "bun --cwd ../motel run src/motel.ts tui",
"check": "tsc --noEmit && effect-language-service diagnostics --project tsconfig.json && effect-language-service diagnostics --project tsconfig.core.json",
"sdk:smoke": "bun examples/sdk-usage.ts",
"analyze": "bun scripts/design-check.ts",
"oxlint": "bun scripts/oxlint-check.ts",
"oxlint:fix": "oxlint --fix src scripts examples smoke-emit.ts",
"oxlint:report": "bun scripts/oxlint-check.ts --upgrade-report",
"oxlint:upgrade": "bun update oxlint && bun scripts/oxlint-check.ts --upgrade-report",
"debt": "bun scripts/ponytail-debt.ts",
"debt:audit": "bun scripts/debt-audit.ts",
"test:unit": "vitest run",
"test": "bun scripts/lint-coordination.test.ts && bun scripts/oxlint-check.test.ts && bun scripts/design-check.test.ts && bun scripts/ponytail-debt.test.ts && bun run test:unit && RLM_MOCK=1 bun scripts/tui/mock.test.ts",
"test:tui": "bun scripts/tui/mock.test.ts && bun scripts/tui/smoke.test.ts && bun scripts/tui/focus.test.ts && bun scripts/tui/ime.test.ts && bun scripts/tui/layout.test.ts && bun scripts/tui/node-tree.test.ts && bun scripts/tui/node-tree-inline.test.ts && bun scripts/tui/node-stream.test.ts && bun scripts/tui/icons.test.ts && bun scripts/tui/thinking-streaming.test.ts && bun scripts/tui/tool-grouping.test.ts && bun scripts/tui/tool-grouping-steps.test.ts && bun scripts/tui/assembly.test.ts && bun scripts/tui/transcript.test.ts && bun scripts/tui/row-budget.test.ts && bun scripts/tui/static-commit.test.ts && bun scripts/tui/header.test.ts && bun scripts/tui/diff-viewer.test.ts && bun scripts/tui/diff-syntax.test.ts && bun scripts/tui/queued.test.ts && bun scripts/tui/rate-limit.test.ts && bun scripts/tui/theme.test.ts && bun scripts/tui/messages.test.ts && bun scripts/tui/composer.test.ts && bun scripts/tui/palette.test.ts && bun scripts/tui/dialog-select.test.ts && bun scripts/tui/dialogs.test.ts && bun scripts/tui/which-key.test.ts && bun scripts/tui/autocomplete.test.ts && bun scripts/tui/wire-autocomplete.test.ts && bun scripts/tui/keys.test.ts && bun scripts/tui/polish.test.ts",
"live": "RLM_LIVE=1 bun --env-file=.env scripts/workflow-live.test.ts",
"live:focus": "RLM_FOCUS_LIVE=1 bun scripts/focus-live.test.ts",
"lint": "bun run check && bun run oxlint && bun run test && bun run analyze && bun run debt"
},
"dependencies": {
"@ax-llm/ax": "^22.0.5",
"@effect/atom-react": "4.0.0-beta.85",
"@effect/opentelemetry": "4.0.0-beta.85",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/context-async-hooks": "^2.8.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.219.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.219.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.219.0",
"@opentelemetry/resources": "^2.8.0",
"@opentelemetry/sdk-logs": "^0.219.0",
"@opentelemetry/sdk-metrics": "^2.8.0",
"@opentelemetry/sdk-trace-base": "^2.8.0",
"@opentelemetry/sdk-trace-node": "^2.8.0",
"@opentui/core": "^0.4.1",
"@opentui/react": "^0.4.1",
"effect": "4.0.0-beta.85",
"react": "^19.2.7"
},
"devDependencies": {
"@effect/language-service": "^0.86.2",
"@effect/vitest": "4.0.0-beta.85",
"@kitlangton/terminal-control": "^0.3.0",
"@types/bun": "^1.3.14",
"@types/node": "^26.0.0",
"@types/react": "^19.2.17",
"oxlint": "^1.71.0",
"typescript": "^6.0.3",
"vitest": "^4.1.9",
"yuku-analyzer": "^0.5.39"
}
}