-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 788 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 788 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
31
32
33
34
35
36
37
38
39
{
"name": "wallet-common",
"version": "0.0.1",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist/**/*",
"src/**/*",
"package.json"
],
"scripts": {
"test": "tsc && vitest run",
"test-start": "vitest",
"build": "rm -rf dist/ && tsc",
"prepare": "npm run build"
},
"dependencies": {
"@auth0/mdl": "^2.2.0",
"@sd-jwt/core": "^0.10.0",
"@sd-jwt/sd-jwt-vc": "^0.13.0",
"asn1js": "^3.0.5",
"axios": "^1.7.9",
"buffer": "^6.0.3",
"cose-kit": "^1.7.1",
"dcql": "^3.0.0",
"jose": "^5.9.6",
"jsonpointer": "^5.0.1",
"pkijs": "^3.2.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@sd-jwt/types": "^0.10.0",
"@types/node": "^22.10.10",
"@types/xmldom": "^0.1.34",
"typescript": "^5.7.3",
"vitest": "^3.2.4",
"xmldom": "^0.6.0"
}
}