-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 2.66 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
{
"name": "decant",
"private": true,
"description": "OpenCode context-map plugin prototype for LLM context visualization and navigation.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/IslamTayeb/decant.git"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test test/**/*.test.ts",
"test:watch": "node --import tsx --test --watch test/**/*.test.ts",
"validate:sandbox": "node --import tsx tools/validation/validate-sandbox.ts",
"validate:compaction-archive": "node --import tsx tools/validation/validate-compaction-archive.ts",
"validate:blame-tui": "node --loader ./tools/validation/node-file-loader.mjs --import tsx tools/validation/validate-blame-tui.ts",
"validate:blame-tui-live": "node --import tsx tools/validation/validate-blame-tui-live.ts",
"validate:long-session": "node --import tsx tools/validation/validate-long-session.ts",
"evaluate:compaction": "node --import tsx tools/validation/evaluate-compaction.ts",
"generate:fixtures": "node --import tsx tools/fixtures/generate-test-fixtures.ts",
"setup:test-env": "node --import tsx tools/fixtures/setup-test-env.ts",
"inspect": "node --import tsx tools/inspect-context.ts",
"benchmark:swebench-context": "node --import tsx benchmarks/swebench-context/run.ts",
"benchmark:context-canaries": "node --import tsx benchmarks/context-canaries/run.ts",
"benchmark:memory-infra": "node --import tsx benchmarks/memory-infra/run.ts",
"benchmark:code-recall": "node --import tsx benchmarks/code-recall/run.ts",
"benchmark:swe-recall": "node --import tsx benchmarks/swe-recall/run.ts",
"benchmark:blame-recall": "node --import tsx benchmarks/blame-recall/run.ts",
"benchmark:provenance-qa": "node --import tsx benchmarks/provenance-qa/run.ts",
"benchmark:provenance-blog": "node --import tsx benchmarks/provenance-qa/blog-run.ts",
"benchmark:reversible-memory": "node --import tsx benchmarks/reversible-memory/run.ts",
"artifacts:export": "node --import tsx tools/artifacts/export.ts",
"artifacts:blog-evidence-summary": "node --import tsx tools/artifacts/blog-evidence-summary.ts",
"artifacts:judge-reversible-memory": "node --import tsx tools/artifacts/judge-reversible-memory.ts",
"artifacts:memory-infra-frontier": "node --import tsx tools/artifacts/memory-infra-frontier.ts"
},
"dependencies": {
"@opencode-ai/plugin": "1.3.6",
"@opencode-ai/sdk": "1.3.6",
"@opentui/core": "0.1.96",
"@opentui/solid": "0.1.96",
"solid-js": "1.9.11",
"zod": "4.1.12"
},
"devDependencies": {
"@types/node": "24.5.2",
"tsx": "4.20.5",
"typescript": "5.9.3"
}
}