-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "ipfshare",
"version": "1.0.0",
"description": "An IPFS based encrypted file sharing CLI tool",
"main": "./dist/src/index.js",
"bin": {
"ipfshare": "./dist/src/index.js"
},
"type": "module",
"scripts": {
"start": "node -r source-map-support/register dist/src/index.js",
"watch": "concurrently --kill othgers \"tsc -w\" \"tsc-alias -w\" ",
"build": "tsc && tsc-alias",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"archiver": "^5.3.1",
"chalk": "^5.2.0",
"cli-progress": "^3.12.0",
"clipboardy": "^3.0.0",
"commander": "^11.0.0",
"did": "^0.5.0",
"did-jwt": "^7.1.0",
"did-resolver": "^4.1.0",
"dids": "^4.0.1",
"figlet": "^1.6.0",
"fs-extra": "^11.1.1",
"go-ipfs": "^0.19.2",
"inquirer": "^9.2.0",
"ipfsd-ctl": "^13.0.0",
"key-did-provider-ed25519": "^3.0.1",
"key-did-resolver": "^3.0.0",
"kubo-rpc-client": "^3.0.1",
"node-notifier": "^10.0.1",
"ora": "^6.3.0",
"orbit-db": "^0.29.0",
"orbit-db-access-controllers": "^0.4.0",
"orbit-db-identity-provider": "https://github.com/nicocossiom/orbit-db-identity-provider",
"orbit-db-keystore": "^2.0.0",
"prompts": "^2.4.2",
"ps-list": "^8.1.1",
"tar": "^6.1.15",
"@commander-js/extra-typings": "^11.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/archiver": "^5.3.2",
"@types/cli-progress": "^3.11.0",
"@types/figlet": "^1.5.6",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.3.2",
"@types/node-notifier": "^8.0.2",
"@types/orbit-db": "github:orbitdb/orbit-db-types",
"@types/prompts": "^2.4.4",
"@types/tar": "^6.1.5",
"@types/tar-fs": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
}
}