-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.57 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
{
"name": "agentgate-firewall",
"version": "0.2.2",
"description": "Policy-based firewall and honeypot middleware for AI agents accessing websites",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "npm run build",
"server": "node dist/bin/server.js"
},
"bin": {
"agentgate-server": "dist/bin/server.js"
},
"keywords": [
"ai",
"agent",
"firewall",
"middleware",
"bot-protection",
"scraping",
"crawler",
"nextjs",
"express",
"cloudflare"
],
"author": "Carlos-Projects <Carlos@AIAgentObservatory.org>",
"homepage": "https://github.com/Carlos-Projects/agentgate",
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"next": "^14.0.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"dependencies": {
"@types/cookie-parser": "^1.4.10",
"express": "^5.2.1",
"js-yaml": "^4.1.0"
},
"optionalDependencies": {
"@upstash/redis": "^1.0.0"
},
"peerDependencies": {
"next": "^14.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
}
}