-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 933 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 933 Bytes
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
{
"name": "@clawdosdev/clawptcha",
"version": "0.1.0",
"description": "Clawptcha — the reverse CAPTCHA. Proof-of-Agent: humans prove they're human, agents prove they're agents. Stateless, signed, MCP-native. EN + 中文.",
"type": "module",
"main": "src/index.mjs",
"exports": {
".": "./src/index.mjs",
"./mcp": "./src/mcp.mjs"
},
"bin": { "clawptcha-mcp": "src/mcp.mjs" },
"files": ["src", "README.md", "LICENSE"],
"scripts": {
"mcp": "node src/mcp.mjs",
"test": "node test/test.mjs"
},
"keywords": ["captcha", "proof-of-agent", "agent", "ai-agent", "mcp", "clawdos", "base", "verification", "anti-bot", "turing"],
"license": "MIT",
"homepage": "https://clawdos.space/clawptcha",
"repository": { "type": "git", "url": "git+https://github.com/clawdosdev/clawptcha.git" },
"author": "ClawdOS",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.0",
"zod": "^3.23.0"
}
}