-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "redas-protocol",
"version": "2.0.0",
"description": "Deterministic SHA-256 hashing and offline verification for the Redas Commitment Protocol — a tiny open spec that gives every commitment a portable, hash-anchored identity. Zero dependencies; pure stdlib.",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"src/js/hash.js",
"src/js/verify.js",
"schema/commitment.json",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node tests/conformance.js"
},
"keywords": [
"commitment",
"protocol",
"hash",
"sha256",
"verification",
"agent",
"tool-use",
"function-calling",
"ai",
"llm",
"construction",
"accountability",
"trust",
"audit",
"deterministic",
"canonical-json"
],
"author": "Michael Stevenson <dev@redas.app>",
"license": "Apache-2.0",
"homepage": "https://github.com/Redas-Protocol/redas-protocol#readme",
"bugs": {
"url": "https://github.com/Redas-Protocol/redas-protocol/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Redas-Protocol/redas-protocol.git"
},
"engines": {
"node": ">=18"
}
}