-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 831 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 831 Bytes
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
{
"name": "opencode-sigil",
"version": "0.1.0",
"description": "OpenCode plugin for Grafana Sigil AI telemetry",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": ["dist", "skills"],
"scripts": {
"build": "bash scripts/build.sh",
"typecheck": "tsc --noEmit",
"deploy": "bash scripts/deploy.sh",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.2.16"
},
"devDependencies": {
"@grafana/sigil-sdk-js": "workspace:*",
"@opencode-ai/plugin": "^1.3.0",
"@opencode-ai/sdk": "^1.3.2",
"@types/node": "^24.0.0",
"esbuild": "^0.27.3",
"typescript": "^6.0.0",
"vitest": "^4.1.0"
}
}