-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.59 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.59 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
62
63
64
65
66
67
68
69
70
71
{
"name": "cellar-door-entry",
"version": "0.2.0",
"type": "module",
"description": "Verifiable arrival markers — the authenticated declaration of arrival that completes identity continuity across contexts.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"@noble/hashes": "^1.8.0",
"canonicalize": "^2.1.0"
},
"peerDependencies": {
"better-sqlite3": ">=9.0.0",
"cellar-door-exit": ">=0.2.0"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
}
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.19.33",
"better-sqlite3": "^12.6.2",
"cellar-door-exit": "file:../exit-door",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.4.5",
"vitest": "^3.2.4"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/CellarDoorExits/entry-door"
},
"keywords": [
"entry",
"arrival",
"agent",
"verifiable",
"did",
"ai-agent",
"protocol",
"cellar-door"
]
}