-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.32 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.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
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
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "sentinel-protocol",
"version": "1.2.7",
"description": "The Reference Architecture for Local AI Governance & Firewalling. Secure, deterministic protection for Agents, MCP, and LLMs.",
"keywords": [
"ai-security",
"firewall",
"mcp",
"agent-governance",
"pii-redaction",
"prompt-injection",
"llm-security",
"ai-firewall",
"owasp",
"guardrails",
"ai-safety",
"red-team",
"compliance",
"gdpr",
"soc2",
"threat-detection",
"token-watermark",
"local-ai"
],
"repository": {
"type": "git",
"url": "https://github.com/myProjectsRavi/sentinel-protocol.git"
},
"homepage": "https://github.com/myProjectsRavi/sentinel-protocol#readme",
"bugs": {
"url": "https://github.com/myProjectsRavi/sentinel-protocol/issues"
},
"license": "MIT",
"main": "src/index.js",
"types": "index.d.ts",
"type": "commonjs",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./src/index.js",
"default": "./src/index.js"
},
"./embed": {
"types": "./embed.d.ts",
"require": "./embed.js",
"default": "./embed.js"
},
"./package.json": "./package.json"
},
"bin": {
"sentinel": "cli/sentinel.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node ./cli/sentinel.js start",
"lint": "npm run lint:eslint && npm run lint:static",
"lint:eslint": "npx --yes eslint@9.21.0 . --max-warnings=0",
"lint:static": "node ./scripts/lint-basic.js",
"test": "jest --runInBand",
"test:unit": "jest --runInBand test/unit",
"test:unit:ci": "jest --runInBand test/unit --detectOpenHandles",
"test:integration": "jest --runInBand test/integration",
"test:coverage": "jest --runInBand --coverage",
"test:coverage:gate": "jest --runInBand --config jest.coverage.config.js",
"openapi:validate": "node ./scripts/validate-openapi.js",
"benchmark": "node ./scripts/benchmark-overhead.js",
"benchmark:gate": "node ./scripts/benchmark-regression-gate.js",
"benchmark:datasets": "node ./scripts/benchmark-standard-datasets.js",
"perf:p0:gate": "node ./scripts/perf-p0-gate.js",
"perf:p1:gate": "node ./scripts/perf-p1-gate.js",
"perf:p2:gate": "node ./scripts/perf-p2-gate.js",
"perf:p3:gate": "node ./scripts/perf-p3-gate.js",
"perf:v4:phasea:gate": "node ./scripts/perf-v4-phasea-gate.js",
"reliability": "node ./scripts/reliability-proof.js",
"owasp:submission:pack": "node ./scripts/prepare-owasp-submission-pack.js",
"ci:bootstrap:npx": "node ./scripts/ci-validate-npx-bootstrap.js",
"ci:init:wizard:smoke": "node ./scripts/ci-init-wizard-smoke.js",
"ci:framework:detect:smoke": "node ./scripts/ci-framework-detect-smoke.js",
"ci:vscode:package": "node ./scripts/ci-vscode-package.js",
"sbom:cyclonedx": "npm sbom --sbom-format=cyclonedx",
"sbom:spdx": "npm sbom --sbom-format=spdx"
},
"dependencies": {
"@xenova/transformers": "2.17.0",
"@opentelemetry/api": "1.9.0",
"blessed": "0.1.81",
"commander": "13.1.0",
"express": "4.22.1",
"js-yaml": "4.1.1",
"onnxruntime-node": "1.18.0",
"undici": "6.24.0",
"uuid": "11.1.0"
},
"devDependencies": {
"autocannon": "8.0.0",
"jest": "30.0.5",
"supertest": "7.1.3"
},
"overrides": {
"body-parser": "1.20.4",
"qs": "6.15.0"
}
}