-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.33 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.33 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
{
"name": "@agnt-rcpt/openclaw",
"version": "0.9.1",
"description": "Cryptographically signed audit trail for OpenClaw agent actions via Agent Receipts",
"type": "module",
"license": "Apache-2.0",
"author": "Otto Jongerius",
"repository": {
"type": "git",
"url": "git+https://github.com/agent-receipts/openclaw.git"
},
"keywords": [
"openclaw",
"agent-receipts",
"audit-trail",
"receipts",
"verifiable-credentials",
"ed25519"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"bin": {
"openclaw-agent-receipts": "dist/src/cli.js"
},
"files": [
"dist",
"taxonomy.json",
"openclaw.plugin.json",
"CHANGELOG.md"
],
"engines": {
"node": ">=22.11.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@agnt-rcpt/sdk-ts": "^0.9.0",
"@sinclair/typebox": "0.34.49"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"openclaw": "*",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"peerDependencies": {
"openclaw": ">=2025.0.0"
},
"openclaw": {
"extensions": [
"./dist/src/index.js"
]
}
}