agentseal 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/package.json ADDED
@@ -0,0 +1,94 @@
1
+ {
2
+ "name": "agentseal",
3
+ "version": "0.1.0",
4
+ "description": "Security validator for AI agents — 150 attack probes to test prompt injection and extraction defenses",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ }
20
+ },
21
+ "bin": {
22
+ "agentseal": "dist/agentseal.js"
23
+ },
24
+ "files": [
25
+ "dist",
26
+ "README.md",
27
+ "LICENSE"
28
+ ],
29
+ "scripts": {
30
+ "build": "tsup",
31
+ "dev": "tsup --watch",
32
+ "test": "vitest run",
33
+ "test:watch": "vitest",
34
+ "test:coverage": "vitest run --coverage",
35
+ "typecheck": "tsc --noEmit",
36
+ "lint": "tsc --noEmit",
37
+ "prepublishOnly": "npm run build"
38
+ },
39
+ "keywords": [
40
+ "ai",
41
+ "security",
42
+ "agent",
43
+ "prompt-injection",
44
+ "llm",
45
+ "testing",
46
+ "validation",
47
+ "red-team",
48
+ "openai",
49
+ "anthropic",
50
+ "langchain",
51
+ "vercel-ai"
52
+ ],
53
+ "author": "AgentSeal",
54
+ "license": "MIT",
55
+ "homepage": "https://agentseal.org",
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/agentseal/agentseal.git",
59
+ "directory": "js"
60
+ },
61
+ "engines": {
62
+ "node": ">=18.0.0"
63
+ },
64
+ "dependencies": {
65
+ "commander": "^12.1.0"
66
+ },
67
+ "devDependencies": {
68
+ "@types/node": "^25.3.5",
69
+ "@vitest/coverage-v8": "^2.1.0",
70
+ "tsup": "^8.3.0",
71
+ "typescript": "^5.6.0",
72
+ "vitest": "^2.1.0"
73
+ },
74
+ "peerDependencies": {
75
+ "@anthropic-ai/sdk": ">=0.30.0",
76
+ "@langchain/core": ">=0.2.0",
77
+ "ai": ">=3.0.0",
78
+ "openai": ">=4.0.0"
79
+ },
80
+ "peerDependenciesMeta": {
81
+ "openai": {
82
+ "optional": true
83
+ },
84
+ "@anthropic-ai/sdk": {
85
+ "optional": true
86
+ },
87
+ "ai": {
88
+ "optional": true
89
+ },
90
+ "@langchain/core": {
91
+ "optional": true
92
+ }
93
+ }
94
+ }