-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.12 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.12 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cc-plugin-eval",
"version": "0.4.0",
"description": "Claude Code plugin component triggering evaluation framework",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js"
}
},
"bin": {
"cc-plugin-eval": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"knip": "knip",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"*.json\" \"*.md\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"*.json\" \"*.md\"",
"typecheck": "tsc --noEmit",
"jscpd": "jscpd ./src --reporters consoleFull --min-lines 5 --min-tokens 50",
"madge": "madge --circular --extensions ts ./src",
"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.105",
"@anthropic-ai/sdk": "^0.88.0",
"async-mutex": "^0.5.0",
"chalk": "^5.3.0",
"commander": "^14.0.3",
"dotenv": "^17.4.2",
"glob": "^13.0.6",
"nanoid": "^5.1.7",
"yaml": "^2.8.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/eslint-plugin": "^1.6.15",
"@vitest/ui": "^4.0.0",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-sonarjs": "^4.0.2",
"jscpd": "^4.0.9",
"knip": "^6.4.1",
"madge": "^8.0.0",
"prettier": "^3.8.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vitest": "^4.0.0"
}
}