-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.53 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-slim-system",
"version": "2.0.14",
"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",
"keywords": [
"opencode",
"opencode-plugin",
"slim",
"prompt",
"tokens",
"tool-descriptions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SK-DEV-AI/opencode-slim-system.git"
},
"bugs": {
"url": "https://github.com/SK-DEV-AI/opencode-slim-system/issues"
},
"homepage": "https://github.com/SK-DEV-AI/opencode-slim-system#readme",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./tui": {
"types": "./tui/index.tsx",
"default": "./tui/index.tsx"
}
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"bin": {
"opencode-slim-export": "cli/export.js",
"opencode-slim-import": "cli/import.js",
"opencode-slim-dump": "cli/dump.js",
"opencode-slim-check": "slim-plugin-check"
},
"files": [
"src",
"tui",
"cli",
"tool",
"prompt",
"README.md"
],
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"peerDependenciesMeta": {
"@opencode-ai/plugin": {
"optional": true
}
},
"devDependencies": {
"@opencode-ai/plugin": "^1.14.20"
}
}