-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"name": "ai-security-code-examples",
"version": "1.0.0",
"description": "Practical code examples for AI security implementation",
"main": "index.js",
"scripts": {
"install-promptfoo": "npm install -g promptfoo",
"security-scan": "promptfoo redteam run --config promptfoo-configs/comprehensive-security.yaml",
"emergency-scan": "promptfoo redteam run --config promptfoo-configs/emergency-security.yaml",
"deploy-emergency": "./deployment-scripts/emergency-deployment.sh"
},
"keywords": [
"ai-security",
"prompt-injection",
"llm-security",
"promptfoo",
"owasp"
],
"author": "AI Security Team",
"license": "MIT",
"dependencies": {
"promptfoo": "^0.70.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"prettier": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-org/ai-security-code-examples.git"
},
"bugs": {
"url": "https://github.com/your-org/ai-security-code-examples/issues"
},
"homepage": "https://github.com/your-org/ai-security-code-examples#readme"
}