-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 908 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
38
39
40
41
42
43
44
45
46
{
"name": "@0xjunger/agentsign",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"description": "Sign AI agent config files (CLAUDE.md, .cursor/rules, AGENTS.md) and verify the signatures in CI.",
"type": "module",
"bin": {
"agentsign": "src/cli.js"
},
"scripts": {
"test": "node --test"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"keywords": [
"ai",
"agent",
"claude",
"cursor",
"claude-md",
"agents-md",
"signing",
"ed25519",
"ci",
"security",
"provenance"
],
"author": "Jünger (@0xjunger)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/0xjunger/agentsign.git"
},
"homepage": "https://github.com/0xjunger/agentsign#readme",
"bugs": {
"url": "https://github.com/0xjunger/agentsign/issues"
},
"engines": {
"node": ">=18"
}
}