-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.15 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.15 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
{
"name": "opencode-presets",
"version": "0.7.1",
"description": "Interactive CLI that patches opencode.json with curated config presets — LSP, MCP, permissions.",
"type": "module",
"bin": {
"opencode-presets": "dist/bin/opencode-presets.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trick77/opencode-presets.git"
},
"homepage": "https://github.com/trick77/opencode-presets#readme",
"bugs": {
"url": "https://github.com/trick77/opencode-presets/issues"
},
"files": [
"dist/",
"presets/",
"README.md",
"AGENTS.md"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "tsc && node --test dist/test/*.test.js",
"coverage": "tsc && node --test --experimental-test-coverage dist/test/*.test.js",
"prepare": "tsc",
"prepublishOnly": "tsc"
},
"dependencies": {
"ajv": "8.20.0",
"chalk": "5.6.2"
},
"devDependencies": {
"@types/node": "25.7.0",
"typescript": "6.0.3"
},
"license": "MIT",
"keywords": [
"opencode",
"presets",
"lsp",
"mcp",
"config",
"lombok",
"jdtls"
]
}