-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@blockchain-lab-um/extended-verification",
"version": "0.3.1-beta.0",
"private": false,
"description": "",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/blockchain-lab-um/masca.git"
},
"license": "(Apache-2.0 AND MIT)",
"author": {
"name": "Blockchain Lab:UM",
"email": "blockchain-lab@um.si",
"url": "https://blockchain-lab.um.si"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": ["dist/**", "README.md", "package.json", "CHANGELOG.md"],
"scripts": {
"build": "pnpm clean && pnpm compile",
"clean": "rimraf dist",
"compile": "tsup",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"test": "pnpm cross-env NODE_NO_WARNINGS=1 vitest",
"test:ci": "pnpm run test"
},
"dependencies": {
"@blockchain-lab-um/did-provider-key": "1.1.0",
"@blockchain-lab-um/masca-types": "1.5.0-beta.0",
"@blockchain-lab-um/utils": "1.4.0",
"@cef-ebsi/ebsi-did-resolver": "^3.2.0",
"@sd-jwt/crypto-nodejs": "^0.7.2",
"@sd-jwt/sd-jwt-vc": "^0.8.0",
"@veramo/core": "6.0.0",
"@veramo/credential-eip712": "6.0.0",
"@veramo/credential-status": "6.0.0",
"@veramo/credential-w3c": "6.0.0",
"@veramo/did-provider-jwk": "6.0.0",
"@veramo/did-provider-pkh": "6.0.0",
"@veramo/did-resolver": "6.0.0",
"@veramo/utils": "6.0.0",
"did-jwt-vc": "^4.0.0",
"did-resolver": "4.1.0",
"ens-did-resolver": "^1.0.4",
"ethers": "^6.11.1",
"ethr-did-resolver": "10.1.3"
},
"devDependencies": {
"@veramo/did-manager": "6.0.0",
"@veramo/did-provider-ethr": "6.0.0",
"@veramo/key-manager": "6.0.0",
"@veramo/kms-local": "6.0.0",
"@vitest/coverage-v8": "1.6.0",
"desm": "^1.3.1",
"did-jwt": "^8.0.1",
"tsup": "^8.0.2",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "1.6.0"
},
"publishConfig": {
"access": "public"
}
}