-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 808 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 808 Bytes
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
{
"name": "dcp-ai",
"version": "0.1.0-genesis",
"type": "module",
"main": "lib/verify.js",
"exports": {
".": "./lib/verify.js"
},
"bin": {
"dcp": "./bin/dcp.js"
},
"scripts": {
"test": "npm run conformance",
"validate": "node tools/validate.js",
"conformance": "node tools/conformance.js",
"examples:generate": "node scripts/generate-production-examples.js",
"examples:generate:v2": "node scripts/generate-v2-examples.js",
"conformance:v2": "node tools/conformance.js",
"server": "node server/index.js"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"json-stable-stringify": "^1.1.1",
"@noble/post-quantum": "^0.5.4",
"secrets.js-grempe": "^2.0.0"
}
}