-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-slim-system",
"version": "2.1.6",
"description": "Slim OpenCode system prompt and built-in tool descriptions to reduce per-request token overhead. Plugs into the tool.definition and experimental.chat.system.transform hooks.",
"type": "module",
"license": "MIT",
"author": "SK",
"repository": {
"type": "git",
"url": "git+https://github.com/SK-DEV-AI/opencode-slim-system.git"
},
"exports": {
".": "./src/index.js",
"./tui": "./tui/index.jsx"
},
"main": "./src/index.js",
"files": [
"src",
"tui",
"tool",
"prompt",
"README.md"
],
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"peerDependenciesMeta": {
"@opencode-ai/plugin": {
"optional": true
}
},
"scripts": {
"gen-defaults": "node scripts/gen-defaults.js",
"test": "node --test tests/core.test.js"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.17.9"
}
}