-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.85 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.85 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@atonev/opencode-kasper",
"version": "1.1.1",
"type": "module",
"description": "OpenCode plugin that monitors agent sessions, scores adherence to user instructions via LLM-as-judge, and injects corrective instructions into AGENTS.md and per-agent prompt files.",
"author": "andrejtonev <29177572+andrejtonev@users.noreply.github.com>",
"license": "MIT",
"keywords": [
"opencode",
"plugin",
"kasper",
"agent",
"monitoring",
"llm",
"scoring"
],
"repository": {
"type": "git",
"url": "https://github.com/andrejtonev/opencode-kasper.git"
},
"bugs": {
"url": "https://github.com/andrejtonev/opencode-kasper/issues"
},
"homepage": "https://github.com/andrejtonev/opencode-kasper#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": ["dist"],
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"lint": "biome check src/ tests/ scripts/",
"lint:fix": "biome check --write src/ tests/ scripts/",
"format": "biome format --write src/ tests/ scripts/",
"test": "bun test",
"test:watch": "bun test --watch",
"test:e2e": "OPENCODE_E2E=1 bun test --timeout 300000 tests/e2e/",
"prepublishOnly": "npm run build",
"install-plugin": "node scripts/symlink-plugin.mjs"
},
"dependencies": {
"jsonc-parser": "^3.3.1",
"zod": "^4.4.3"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.14.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.14.25",
"@opencode-ai/sdk": "^1.15.11",
"@biomejs/biome": "^2.4.15",
"@types/node": "^22.0.0",
"typescript": "^5.9.3"
}
}