-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.89 KB
/
package.json
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
{
"name": "guardian-sd-responder",
"version": "0.0.1",
"description": "Selective Disclosure Presentation Exchange Responder",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node -r dotenv/config --loader @swc-node/register/esm src/index.ts",
"register": "node -r dotenv/config --loader @swc-node/register/esm src/example/register-credential.ts",
"example": "node -r dotenv/config --loader @swc-node/register/esm src/example/process-test-request.ts",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --config jest.config.js --forceExit",
"lint": "eslint src test",
"format": "prettier -w src test",
"formatting": "prettier -c src test"
},
"engines": {
"node": ">=18"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@digitalbazaar/ed25519-signature-2018": "^4.0.0",
"@digitalbazaar/ed25519-signature-2020": "^5.2.0",
"@digitalbazaar/ed25519-verification-key-2020": "^4.1.0",
"@digitalbazaar/minimal-cipher": "^5.1.1",
"@digitalbazaar/vc": "^6.0.1",
"@digitalbazaar/x25519-key-agreement-key-2020": "^3.0.1",
"@hashgraph/did-sdk-js": "^0.1.1",
"@hashgraph/sdk": "^2.29.0",
"@helia/json": "^1.0.0",
"@helia/unixfs": "^1.3.0",
"@mattrglobal/jsonld-signatures-bbs": "^1.2.0",
"@meeco/cryppo": "^2.0.2",
"@sphereon/pex": "^2.0.1",
"@sphereon/ssi-types": "^0.13.0",
"@transmute/ed25519-signature-2018": "^0.7.0-unstable.81",
"@transmute/ed25519-signature-2020": "^0.2.1-unstable.12",
"@transmute/jsonld": "^0.1.0",
"@transmute/vc.js": "^0.7.0-unstable.81",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"did-method-key": "^0.7.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helia": "^1.3.2",
"inquirer": "^9.2.7",
"jsonld": "^8.2.0",
"jsonld-signatures": "^7.0.0",
"jsonpath": "^1.1.1",
"lmdb": "^2.8.3",
"multiformats": "^12.0.1",
"tweetnacl": "^1.0.3",
"uuid": "^9.0.0",
"web3.storage": "^4.5.5",
"winston": "^3.9.0"
},
"devDependencies": {
"@jest/globals": "^29.6.0",
"@sphereon/pex-models": "^2.0.2",
"@swc-node/jest": "^1.6.6",
"@swc-node/register": "^1.6.5",
"@swc/core": "^1.3.66",
"@swc/jest": "^0.2.26",
"@types/express": "^4.17.17",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.2",
"@types/jsonpath": "^0.2.0",
"@types/node": "18",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"bs58": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.5.0",
"pkg": "^5.8.1",
"prettier": "^2.8.8",
"sha256": "^0.2.0",
"ts-jest": "^29.1.1",
"typescript": "~5.0.2"
}
}