forked from bnonni/tool5
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "tool5-cli",
"version": "0.0.2",
"type": "module",
"description": "CLI tools for interacting with Web5",
"main": "dist/tool5.js",
"bin": {
"tool5": "dist/tool5.js"
},
"scripts": {
"start": "npm run build && node dist/web5-tools.js",
"wipe": "rm -rf dist node_modules",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"did:create": "npm run build && node dist/web5-tools.js -p did -a create",
"cli:install": "sh install-tool5.sh",
"cli:uninstall": "rm -rf dist node_modules",
"update:outdated": "ncu --install always -u"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bnonni/tool5.git"
},
"author": "Bryan Nonni (https://github.com/bnonni)",
"license": "ISC",
"bugs": {
"url": "https://github.com/bnonni/tool5/issues"
},
"homepage": "https://github.com/bnonni/tool5#readme",
"dependencies": {
"@dcx-protocol/common": "^7.0.0",
"@web5/agent": "^0.7.1",
"@web5/api": "^0.10.0",
"@web5/common": "^1.0.2",
"@web5/credentials": "^1.1.1",
"@web5/crypto": "^1.0.4",
"@web5/dids": "^1.1.4",
"@web5/user-agent": "^0.6.3",
"commander": "^12.1.0",
"ed25519-keygen": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/node": "^22.5.4",
"@types/readable-stream": "^4.0.15",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"dotenv": "^16.4.5",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"npm-check-updates": "^17.1.1",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}