-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.49 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.49 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
{
"name": "@kryptsec/oasis",
"version": "0.1.5",
"type": "module",
"description": "OASIS - Open-source AI security benchmarking CLI. Run LLM penetration testing benchmarks with MITRE ATT&CK analysis.",
"author": "Kryptsec",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kryptsec/oasis"
},
"homepage": "https://github.com/kryptsec/oasis",
"keywords": [
"ai",
"security",
"benchmark",
"llm",
"penetration-testing",
"ctf",
"mitre-attack",
"owasp",
"red-team"
],
"bin": {
"oasis": "./bin/oasis"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"bin",
"spec"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@inquirer/prompts": "^8.2.1",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"dotenv": "^16.3.1",
"gradient-string": "^3.0.0",
"openai": "^6.25.0",
"ora": "^8.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^3.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}