-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.13 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.13 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "cellar-door-exit",
"version": "0.2.3",
"type": "module",
"description": "Verifiable EXIT markers — the authenticated declaration of departure that preserves 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",
"CHANGELOG.md"
],
"bin": {
"exit": "./dist/cli.js"
},
"scripts": {
"build": "tsup src/index.ts src/cli.ts --format esm,cjs --dts",
"build:tsc": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"demo:voluntary": "npx tsx src/demo/scenario1-voluntary.ts",
"demo:emergency": "npx tsx src/demo/scenario2-emergency.ts",
"demo:successor": "npx tsx src/demo/scenario3-successor.ts",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"@noble/ciphers": "^2.1.1",
"@noble/curves": "^2.0.1",
"@noble/ed25519": "^2.3.0",
"@noble/hashes": "^1.8.0",
"canonicalize": "^2.1.0",
"commander": "^14.0.3"
},
"devDependencies": {
"@langchain/core": "^1.1.27",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.19.33",
"better-sqlite3": "^12.6.2",
"fast-check": "^3.23.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"zod": "^4.3.6"
},
"peerDependencies": {
"better-sqlite3": ">=9.0.0"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
}
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/CellarDoorExits/exit-door.git"
},
"homepage": "https://github.com/CellarDoorExits/exit-door",
"bugs": {
"url": "https://github.com/CellarDoorExits/exit-door/issues"
},
"keywords": [
"exit",
"agent",
"departure",
"ceremony",
"verifiable",
"did",
"ai-agent",
"protocol"
]
}