-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.36 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
{
"name": "skilldiff",
"version": "0.1.0",
"description": "Behavioral regression testing for agent skills. Runs your skill in a real agent harness and diffs the behavior on every PR.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/scs0209/skilldiff.git"
},
"homepage": "https://github.com/scs0209/skilldiff#readme",
"bugs": "https://github.com/scs0209/skilldiff/issues",
"keywords": [
"agent",
"skills",
"testing",
"regression",
"claude",
"cursor",
"codex",
"codebuff",
"ci"
],
"files": [
"dist/",
"scripts/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"bin": {
"skilldiff": "./dist/src/cli.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build && npm test",
"spike": "tsx scripts/spike.ts",
"spike:recorded": "tsx scripts/recorded-spike.ts",
"spike:freebuff": "tsx scripts/freebuff-spike.ts",
"assets": "tsx scripts/render-hero-assets.ts",
"test": "vitest run"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"@codebuff/sdk": "^0.10.7",
"yaml": "^2.9.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"playwright-core": "^1.63.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20"
}
}