-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "@techdivision/opencode-plugin-config",
"version": "0.1.0",
"description": "OpenCode Plugin - Configuration cascade with deep-merge, env-var resolution and schema validation",
"type": "module",
"main": "src/config.ts",
"types": "src/config.ts",
"files": [
"src/",
"skills/",
"schemas/",
"plugin.json"
],
"keywords": [
"opencode",
"plugin",
"config"
],
"scripts": {
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@opencode-ai/plugin": "1.2.5",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"deepmerge": "^4.3.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.15.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1",
"@amiceli/vitest-cucumber": "^6.0.0"
},
"peerDependencies": {
"bun": ">=1.0.0"
},
"opencode": {
"plugin": true,
"category": "optional"
},
"author": "TechDivision GmbH",
"license": "MIT"
}