-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.55 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
{
"name": "@cleanslice/paddock",
"version": "0.3.0",
"license": "MIT",
"type": "module",
"bin": {
"paddock": "./dist/cli.js",
"paddock-mcp": "./dist/mcp.js"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./cli": "./dist/cli.js",
"./mcp": "./dist/mcp.js"
},
"files": [
"dist/",
"README.md"
],
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"build": "bun build src/cli.ts --outfile dist/cli.js --target bun --packages external && bun build src/index.ts --outfile dist/index.js --target bun --packages external && bun build src/mcp.ts --outfile dist/mcp.js --target bun --packages external",
"prepublishOnly": "bun run build",
"eval": "bun run src/cli.ts run",
"eval:quick": "bun run src/cli.ts run --count 3",
"eval:full": "bun run src/cli.ts run --full",
"eval:category": "bun run src/cli.ts run --categories",
"scenarios": "bun run src/cli.ts scenarios",
"mcp": "bun run src/mcp.ts",
"typecheck": "bunx tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.79.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.0"
},
"peerDependencies": {
"@anthropic-ai/vertex-sdk": "^0.16.0",
"@google/genai": "~1.25.0"
},
"peerDependenciesMeta": {
"@anthropic-ai/vertex-sdk": { "optional": true },
"@google/genai": { "optional": true }
},
"devDependencies": {
"@anthropic-ai/vertex-sdk": "^0.16.0",
"@google/genai": "~1.25.0",
"@types/bun": "latest",
"@types/node": "^22.0.0",
"typescript": "^6.0.2"
}
}