-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "zcap-cli",
"version": "1.0.0",
"description": "Command-line tool for ZCAP capability creation, delegation, and invocation using did:key",
"type": "module",
"bin": {
"zcap": "./bin/zcap.js"
},
"scripts": {
"start": "node ./bin/zcap.js",
"init": "zcap init",
"invoke": "zcap invoke",
"create": "zcap create",
"delegate": "zcap delegate",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [
"zcap",
"cli",
"capability",
"linked-data",
"did",
"did:key",
"digitalbazaar"
],
"author": "Tyler Minard",
"license": "SEE LICENSE",
"dependencies": {
"@digitalbazaar/did-method-key": "^5.2.0",
"@digitalbazaar/ed25519-signature-2020": "^5.4.0",
"@digitalbazaar/ed25519-verification-key-2020": "^4.2.0",
"@digitalbazaar/ezcap": "^4.1.0",
"uuid": "^11.1.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"prettier-plugin-jsdoc": "^1.3.2"
}
}