-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 942 Bytes
/
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
{
"name": "@cooperation/vc-storage",
"type": "module",
"version": "1.0.11",
"description": "Sign and store your verifiable credentials.",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"version": "npm version patch"
},
"author": "cooperation",
"license": "ISC",
"dependencies": {
"@digitalbazaar/did-method-key": "^5.2.0",
"@digitalbazaar/ed25519-signature-2020": "^5.3.0",
"@digitalbazaar/ed25519-verification-key-2020": "^4.1.0",
"@digitalbazaar/vc": "^6.3.0",
"ethers": "^6.13.2",
"tsc": "^2.0.4",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/uuid": "^10.0.0",
"typescript": "^5.6.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"roots": [
"<rootDir>/tests"
]
}
}