-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.83 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": "@dsnp/verifiable-credentials",
"version": "0.0.0",
"description": "A library to use W3C Verifiable Credentials with DSNP",
"type": "module",
"scripts": {
"build": "npm run clean && tsc",
"postbuild": "npm run package",
"clean": "rm -Rf dist",
"prepackage": "cp CONTRIBUTING.md README.md LICENSE ./dist",
"package": "node --no-warnings scripts/package.js",
"test": "vitest",
"format": "tsc --noEmit --pretty && eslint --fix \"**/*.ts\"",
"lint": "tsc --noEmit --pretty && eslint \"**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/LibertyDSNP/dsnp-verifiable-credentials.git"
},
"author": "Project Liberty",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LibertyDSNP/dsnp-verifiable-credentials/issues"
},
"homepage": "https://github.com/LibertyDSNP/dsnp-verifiable-credentials#readme",
"dependencies": {
"@digitalbazaar/credentials-context": "^3.1.0",
"@digitalbazaar/data-integrity": "^2.2.0",
"@digitalbazaar/data-integrity-context": "^2.0.1",
"@digitalbazaar/did-io": "^2.0.0",
"@digitalbazaar/ed25519-multikey": "^1.2.0",
"@digitalbazaar/eddsa-rdfc-2022-cryptosuite": "^1.1.0",
"@digitalbazaar/vc": "^7.0.0",
"@dsnp/did-resolver": "^0.0.4",
"@dsnp/hash-util": "^0.0.1",
"ajv": "^8.17.1",
"jsonld": "^8.3.2",
"jsonld-signatures": "^11.3.0",
"multiformats": "^13.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vitest": "^2.0.5"
}
}