-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.61 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.61 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
{
"name": "@vapi/bulletproof",
"version": "1.0.0",
"private": true,
"description": "Pre-push guardian that uses Claude to run checks and auto-fix issues",
"keywords": [
"pre-push",
"ci",
"testing",
"typecheck",
"coverage",
"claude",
"ai",
"auto-fix"
],
"license": "MIT",
"author": "Vapi AI",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"bulletproof": "./bin/bulletproof.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.76",
"chalk-animation": "^2.0.3",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"figlet": "^1.10.0",
"gradient-string": "^3.0.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/chalk-animation": "^1.6.3",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^20.11.17",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vapi/bulletproof": "github:VapiAI/bulletproof",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
},
"engines": {
"node": ">=18.0.0"
}
}