-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.34 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.34 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@shieldx/core",
"version": "0.5.0",
"description": "Self-evolving LLM prompt injection defense — 547+ rules, 50+ languages, 10-layer detection, MITRE ATLAS mapping, bio-immune evolution, MCP guard",
"author": "Context X <opensource@context-x.org>",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./nextjs": {
"import": "./dist/integrations/nextjs/index.mjs",
"require": "./dist/integrations/nextjs/index.js",
"types": "./dist/integrations/nextjs/index.d.ts"
},
"./ollama": {
"import": "./dist/integrations/ollama/index.mjs",
"require": "./dist/integrations/ollama/index.js",
"types": "./dist/integrations/ollama/index.d.ts"
},
"./anthropic": {
"import": "./dist/integrations/anthropic/index.mjs",
"require": "./dist/integrations/anthropic/index.js",
"types": "./dist/integrations/anthropic/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"db:migrate": "tsx scripts/setup-db.ts",
"db:seed": "tsx scripts/seed-patterns.ts",
"benchmark": "tsx scripts/benchmark.ts",
"self-test": "tsx scripts/self-test.ts"
},
"dependencies": {
"pg": "^8.13.0",
"pgvector": "^0.2.0",
"zod": "^3.24.0",
"pino": "^9.6.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"vitest": "^3.0.0",
"@vitest/coverage-v8": "^3.0.0",
"@types/pg": "^8.11.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0"
},
"peerDependencies": {
"next": ">=15.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://gitea.context-x.org/rene/shieldx.git"
},
"keywords": [
"llm",
"security",
"prompt-injection",
"defense",
"guardrails",
"claude",
"ollama",
"self-healing",
"kill-chain",
"mcp-security"
]
}