-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.01 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
{
"name": "opencode-snip",
"description": "OpenCode plugin that prefixes shell commands with snip to reduce LLM token consumption",
"type": "module",
"main": ".opencode/plugins/index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@opencode-ai/plugin": "^1.0.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"vitest": "^3.0.0"
},
"keywords": [
"opencode",
"opencode-plugin",
"snip",
"llm",
"tokens",
"cli"
],
"license": "MIT",
"homepage": "https://github.com/VincentHardouin/opencode-snip",
"repository": {
"type": "git",
"url": "https://github.com/VincentHardouin/opencode-snip"
},
"engines": {
"node": "^24"
},
"files": [
".opencode",
"src"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}