-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.48 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
{
"name": "brechabot",
"version": "0.1.2",
"description": "Open-source AI chatbot red-team scanner — finds the breaches in your bot's defenses.",
"type": "module",
"license": "Apache-2.0",
"keywords": [
"llm",
"security",
"red-team",
"prompt-injection",
"jailbreak",
"owasp",
"ai-security"
],
"homepage": "https://github.com/NeetroxX/BrechaBot",
"repository": {
"type": "git",
"url": "git+https://github.com/NeetroxX/BrechaBot.git"
},
"engines": {
"node": ">=20"
},
"bin": {
"brechabot": "dist/bin.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"test": "vitest run",
"prepublishOnly": "npm run typecheck && npm run lint && npm run test && npm run build"
},
"dependencies": {
"commander": "^12.1.0",
"p-limit": "^6.1.0",
"p-retry": "^6.2.0",
"yaml": "^2.5.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"msw": "^2.4.9",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
}
}