-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.52 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
{
"name": "@p-vbordei/agent-id",
"version": "0.1.5",
"publishConfig": {
"access": "public"
},
"description": "Self-custody DID + capability VC profile for AI agents",
"author": "Vlad Bordei <bordeivlad@gmail.com>",
"homepage": "https://github.com/p-vbordei/agent-id#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/p-vbordei/agent-id.git"
},
"bugs": {
"url": "https://github.com/p-vbordei/agent-id/issues"
},
"keywords": [
"did",
"verifiable-credentials",
"decentralized-identity",
"ai-agents",
"agent-infrastructure",
"ed25519",
"eddsa-jcs-2022",
"self-custody",
"did-key",
"did-web"
],
"type": "module",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./context/v1.jsonld": "./context/v1.jsonld",
"./schema/capability-v1.json": "./schema/capability-v1.json"
},
"files": ["src", "context", "schema", "README.md", "SPEC.md", "LICENSE"],
"license": "Apache-2.0",
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"conformance": "bun run conformance/run.ts"
},
"dependencies": {
"@noble/ed25519": "^2.1.0",
"@noble/hashes": "^1.5.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"canonicalize": "^2.0.0",
"multiformats": "^13.3.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/bun": "latest",
"typescript": "^5.6.0"
},
"engines": {
"bun": ">=1.1.0"
}
}