-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.2 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-context-compression",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "Standalone OpenCode plugin for canonical-history context compression research and implementation.",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test tests/**/*.test.ts",
"test:dist-entry": "npm run build && node --import tsx --test tests/e2e/runtime/build-first-entry.test.ts",
"token-counter": "uv run --with fastapi --with uvicorn --with tiktoken scripts/token_counter_service.py",
"probe:seams": "npm run build && node --enable-source-maps scripts/run-seam-probe.mjs",
"trim-json": "node --import tsx scripts/trim-json.ts",
"measure-tokens": "node --import tsx scripts/measure-tokens.ts",
"diff-projection": "node --import tsx scripts/diff-projection-json.ts"
},
"dependencies": {
"@opencode-ai/plugin": "1.3.13",
"@opencode-ai/sdk": "1.3.7",
"json5": "^2.2.3",
"jsonc-parser": "^3.3.1",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^24.6.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}