-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.46 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@interop/did-cli",
"version": "0.10.0",
"description": "DID CLI tool for DIDs, Verifiable Credentials, key pairs, and zcaps",
"type": "module",
"main": "dist/index.js",
"bin": {
"di": "dist/index.js"
},
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"build": "npm run clean && tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"fix": "eslint --fix src && npm run format",
"format": "prettier --write src",
"lint": "eslint src",
"prepublishOnly": "npm run build",
"start": "node --enable-source-maps dist/index.js",
"test": "npm run lint && npm run format && npm run test:node",
"test:node": "node --test --import tsx --enable-source-maps 'src/**/*.test.ts'"
},
"dependencies": {
"@digitalcredentials/bnid": "^5.0.0",
"@digitalcredentials/issuer-registry-client": "^4.0.0",
"@interop/data-integrity-core": "^8.1.0",
"@interop/data-integrity-proof": "^3.4.0",
"@interop/did-method-key": "^7.3.2",
"@interop/did-method-webvh": "^3.4.0",
"@interop/did-web-resolver": "^6.2.2",
"@interop/ecdsa-multikey": "^2.3.1",
"@interop/ecdsa-signature": "2.0.3",
"@interop/ed25519-signature": "^7.1.2",
"@interop/ed25519-verification-key": "^8.0.2",
"@interop/edv-client": "^17.2.0",
"@interop/ezcap": "^7.2.1",
"@interop/minimal-cipher": "^7.4.0",
"@interop/security-document-loader": "^9.4.0",
"@interop/vc": "^11.0.4",
"@interop/verifier-core": "^3.2.1",
"@interop/was-client": "^0.7.1",
"@interop/x25519-key-agreement-key": "^5.1.0",
"@interop/zcap": "^11.0.3",
"@scure/base": "^2.2.0",
"commander": "^15.0.0"
},
"packageManager": "pnpm@11.5.0",
"engines": {
"node": ">=22"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0",
"prettier": "^3.8.2",
"tsx": "^4.21.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.58.2"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"author": {
"name": "Interop Alliance",
"url": "https://github.com/interop-alliance/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/interop-alliance/did-cli-typescript.git"
},
"homepage": "https://github.com/interop-alliance/did-cli-typescript",
"bugs": "https://github.com/interop-alliance/did-cli-typescript/issues"
}