@auxdynamics/mastguard-agent-sdk 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +140 -0
- package/dist/index.d.mts +129 -0
- package/dist/index.d.ts +129 -0
- package/dist/index.js +893 -0
- package/dist/index.mjs +862 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@auxdynamics/mastguard-agent-sdk",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Runtime AI agent security SDK for MastGuard — prompt injection detection, scope enforcement, tamper-evident audit logging, and policy-based guardrails.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "AuxDynamics Inc. <info@auxdynamics.com>",
|
|
7
|
+
"homepage": "https://mastguard.io",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/RahulSapparapu/mastguard"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/RahulSapparapu/mastguard/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"ai-security",
|
|
17
|
+
"llm",
|
|
18
|
+
"agent",
|
|
19
|
+
"prompt-injection",
|
|
20
|
+
"guardrails",
|
|
21
|
+
"mastguard",
|
|
22
|
+
"agentshield",
|
|
23
|
+
"openai",
|
|
24
|
+
"anthropic",
|
|
25
|
+
"ai-governance"
|
|
26
|
+
],
|
|
27
|
+
"engines": { "node": ">=18.0.0" },
|
|
28
|
+
"main": "./dist/index.js",
|
|
29
|
+
"module": "./dist/index.mjs",
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"exports": {
|
|
32
|
+
".": {
|
|
33
|
+
"types": "./dist/index.d.ts",
|
|
34
|
+
"import": "./dist/index.mjs",
|
|
35
|
+
"require": "./dist/index.js"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"files": ["dist", "README.md", "LICENSE"],
|
|
39
|
+
"publishConfig": { "access": "public" },
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
42
|
+
"prepublishOnly": "npm run build",
|
|
43
|
+
"test": "vitest run",
|
|
44
|
+
"test:watch": "vitest",
|
|
45
|
+
"test:adversarial": "vitest run src/tests/adversarial",
|
|
46
|
+
"lint": "tsc --noEmit"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"tsup": "^8.0.0",
|
|
51
|
+
"typescript": "^5.8.0",
|
|
52
|
+
"vitest": "^2.0.0",
|
|
53
|
+
"@types/node": "^22.0.0"
|
|
54
|
+
}
|
|
55
|
+
}
|