-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "mdl-ts",
"version": "0.1.0",
"description": "Typescript mDL library (ISO/IEC 18013-5:2021)",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"prepack": "yarn build",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "foxbike (https://github.com/foxbike)",
"license": "Apache 2.0",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.14",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"create-ts-index": "^1.14.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-node-single-context": "^29.4.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@sphereon/oid4vci-client": "^0.10.3",
"@types/cose-js": "^0.8.3",
"@types/crypto-js": "^4.2.2",
"@types/jsrsasign": "^10.5.14",
"axios": "^1.7.2",
"cbor": "^9.0.2",
"cose-js": "^0.9.0",
"crypto-js": "^4.2.0",
"did-jwt": "^8.0.4",
"did-resolver": "^4.1.0",
"express": "^4.19.2",
"jest-environment-node": "^29.7.0",
"jose": "^5.3.0",
"js-sha256": "^0.11.0",
"jsrsasign": "^11.1.0",
"node-localstorage": "^3.0.5",
"secure-id": "^0.2.2",
"supertest": "^7.0.0",
"ts-jose": "^5.3.0",
"ts-opaque": "^3.0.1",
"uuid": "^9.0.1"
}
}