-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 917 Bytes
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
{
"name": "threatcode-resources",
"version": "1.0.0",
"description": "Security research resources for AI/LLM safety by ThreatCode Information Security",
"license": "CC-BY-4.0",
"scripts": {
"validate": "node scripts/validate.js",
"build:taxonomy": "node scripts/build-taxonomy.js",
"serve:context": "npx serve context -l 8080",
"serve:taxonomy": "npx serve taxonomy/docs -l 8081",
"lint:md": "markdownlint '**/*.md' --ignore node_modules",
"lint:html": "htmlhint '**/*.html' --ignore node_modules",
"lint": "npm run lint:md && npm run lint:html",
"test": "npm run validate"
},
"keywords": [
"security",
"ai",
"llm",
"anti-patterns",
"prompt-injection",
"taxonomy",
"threatcode"
],
"author": "ThreatCode Information Security",
"devDependencies": {
"htmlhint": "^1.1.0",
"markdownlint-cli": "^0.40.0",
"serve": "^14.2.0"
}
}