-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 858 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 858 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
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@clawdbot/stranger-danger",
"version": "1.0.0",
"description": "Give your AI agent a safe word — challenge-response identity verification for Clawdbot",
"type": "commonjs",
"bin": {
"stranger-danger": "scripts/cli.js"
},
"scripts": {
"test": "node scripts/cli.js test"
},
"keywords": [
"clawdbot",
"security",
"verification",
"ai-agent",
"keychain",
"bcrypt"
],
"author": "James Almeida",
"repository": {
"type": "git",
"url": "git+https://github.com/jamesalmeida/stranger-danger.git"
},
"homepage": "https://github.com/jamesalmeida/stranger-danger#readme",
"bugs": {
"url": "https://github.com/jamesalmeida/stranger-danger/issues"
},
"dependencies": {
"bcrypt": "^5.1.1",
"inquirer": "^8.2.6"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}