-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.12 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
{
"name": "@jmsgrn/writ",
"version": "0.1.0",
"description": "A signed, revocable grant of authority for AI agents. Portable identity + delegation (did:key + Ed25519) that any harness can verify.",
"type": "module",
"module": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": "./src/index.ts"
},
"bin": {
"writ": "bin/writ.ts"
},
"files": [
"src",
"bin",
"README.md",
"LICENSE"
],
"license": "MIT",
"author": "James Green",
"repository": {
"type": "git",
"url": "git+https://github.com/jmsgrn/writ.git"
},
"homepage": "https://github.com/jmsgrn/writ#readme",
"bugs": {
"url": "https://github.com/jmsgrn/writ/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"demo": "bun run bin/writ.ts demo",
"handshake": "bun run examples/handshake.ts",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ai-agents",
"agent-identity",
"identity",
"did",
"did-key",
"ed25519",
"verifiable-credentials",
"delegation",
"agent-passport",
"a2a",
"mcp",
"authorization"
]
}