-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.59 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.59 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
{
"name": "cc-plugin-eval",
"version": "0.2.0",
"description": "Claude Code plugin component triggering evaluation framework",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cc-plugin-eval": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "npx prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "npx prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"clean": "rm -rf dist coverage",
"prepare": "npm run build"
},
"keywords": [
"claude-code",
"plugin",
"evaluation",
"testing",
"anthropic"
],
"author": "Steve Nims <sjnims@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.9",
"@anthropic-ai/sdk": "^0.71.2",
"async-mutex": "^0.5.0",
"chalk": "^5.3.0",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"glob": "^13.0.0",
"nanoid": "^5.0.0",
"yaml": "^2.3.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^25.0.6",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/eslint-plugin": "^1.6.5",
"@vitest/ui": "^4.0.0",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.31.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.0"
}
}