-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.32 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": "promptshield",
"version": "0.1.0",
"description": "Enterprise LLM prompt security and red-teaming framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"promptshield": "dist/cli/bin.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"format": "prettier --write src/",
"dev": "tsx watch src/dashboard/server.ts",
"start": "node dist/dashboard/server.js"
},
"keywords": [
"prompt-injection",
"jailbreak-detection",
"llm-security",
"red-teaming",
"ai-safety",
"prompt-security",
"llm-guardrails",
"adversarial-prompts",
"security-testing",
"ai-governance",
"openai",
"anthropic",
"safety-evaluation",
"prompt-engineering",
"vulnerability-scanning",
"content-moderation",
"ai-compliance",
"zero-trust-llm",
"pentesting",
"security-automation"
],
"dependencies": {
"commander": "^12.0.0",
"express": "^4.18.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"chalk": "^5.3.0",
"ora": "^8.0.0",
"yaml": "^2.4.0"
},
"devDependencies": {
"typescript": "^5.4.0",
"vitest": "^1.6.0",
"eslint": "^8.57.0",
"prettier": "^3.2.0",
"@types/express": "^4.17.0",
"@types/node": "^20.11.0"
}
}