-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.2 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
{
"scripts": {
"check-agents": "node skills/agent-format-enforcer/scripts/check-agent-format.mjs",
"check-schema": "node skills/config-sync/scripts/check-schema-compliance.mjs",
"check-all": "npm run check-agents && npm run check-schema",
"fix-agents": "node skills/agent-format-enforcer/scripts/check-agent-format.mjs --fix",
"fix-schema": "node skills/config-sync/scripts/check-schema-compliance.mjs --fix",
"save-schema": "node skills/config-sync/scripts/check-schema-compliance.mjs --save",
"doctor": "npm run check-all",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@franlol/opencode-md-table-formatter": "0.0.3",
"@opencode-ai/plugin": "^1.17.18",
"@opencode-ai/sdk": "^1.17.18",
"@opencode-plugins/env-protection": "^1.0.4",
"glob": "^13.0.6",
"js-yaml": "^5.2.1",
"jsonpath-plus": "^10.4.0",
"opencode-ai": "^1.17.18",
"typescript": "^6.0.3",
"typescript-language-server": "^5.3.0",
"vscode-langservers-extracted": "^4.10.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.5",
"vitest": "^2.1.0"
}
}