-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.11 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.11 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
{
"name": "@agent_press/agentpress",
"version": "1.0.0",
"private": false,
"description": "agents.txt for any repo. Tell autonomous AI agents what they're allowed to do, in 60 seconds.",
"bin": {
"agentpress": "./bin/agentpress.js"
},
"scripts": {
"doctor": "node bin/agentpress.js doctor",
"init": "node bin/agentpress.js init",
"lint": "node bin/agentpress.js lint",
"receipt": "node bin/agentpress.js receipt",
"test": "node --test tests/cli.test.mjs",
"test:legacy": "python3 -m pytest tests/ -q || true"
},
"keywords": [
"agents.txt",
"agent-press",
"agentpress",
"ai-agents",
"ai-ingestion",
"autonomous-agents",
"claude-code",
"cursor",
"devin",
"llms",
"llms-txt",
"mcp",
"robots-txt",
"static-site"
],
"license": "MIT",
"files": [
"bin/",
"scripts/agentpress.py",
"scripts/validate_agentpress_assets.py",
"scripts/check_agentpress_availability.py",
"scripts/build_hash_manifest.py",
"scripts/verify_manifest_integrity.py",
"scripts/mcp_config_guard.py",
"scripts/package_registry_verify.py",
"scripts/__init__.py",
"agents.txt",
"AGENTS.md",
"README.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md",
"llms.txt",
"llms.zh-CN.txt",
"robots.txt",
"agent-sitemap.xml",
"openapi.yaml",
"metadata.json",
".well-known/agentpress.json",
".well-known/ai-ingestion.json",
"agentpress/agent-instructions.json",
"agentpress/agentpress-registry.json",
"agentpress/hash-manifest.json",
"agentpress/README.md",
"agentpress/QUICKSTART.md",
"agentpress/FULL_REFERENCE.md",
"agentpress/schemas/",
"agentpress/templates/",
"agentpress/examples/",
"agentpress/demos/",
"agentpress/mcp/"
],
"homepage": "https://github.com/barneywohl/agentpress",
"repository": {
"type": "git",
"url": "git+https://github.com/barneywohl/agentpress.git"
},
"bugs": {
"url": "https://github.com/barneywohl/agentpress/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@agent_press/core": "^1.0.0"
}
}