This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.12 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
72
73
74
75
76
77
78
79
80
{
"name": "@ceramicstudio/idx-cli",
"description": "IDX CLI",
"keywords": [
"ceramic",
"idx"
],
"version": "0.6.0",
"author": "Paul Le Cam <paul@3box.io>",
"license": "(Apache-2.0 OR MIT)",
"repository": "ceramicstudio/idx-cli",
"homepage": "https://github.com/ceramicstudio/idx-cli",
"bugs": "https://github.com/ceramicstudio/idx-cli/issues",
"main": "lib/index.js",
"bin": {
"idx": "./bin/run"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint src",
"postpack": "rm -f oclif.manifest.json",
"posttest": "npm run lint",
"build": "rm -rf lib && tsc -b && cp src/index.js lib",
"prepack": "npm run build && oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"oclif": {
"commands": "./lib/commands",
"bin": "idx",
"plugins": [
"@oclif/plugin-help"
]
},
"dependencies": {
"@ceramicnetwork/3id-did-resolver": "^0.6.7",
"@ceramicnetwork/http-client": "^0.9.3",
"@ceramicnetwork/key-did-resolver": "^0.2.2",
"@ceramicstudio/idx": "^0.7.0",
"@ceramicstudio/idx-constants": "^0.6.0",
"@ceramicstudio/idx-tools": "^0.7.0",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.1",
"cli-table3": "^0.6.0",
"conf": "^7.1.2",
"dids": "^1.1.1",
"inquirer": "^7.3.3",
"key-did-provider-ed25519": "^1.0.0",
"keytar": "^7.3.0",
"listr": "^0.14.3",
"listr-update-renderer": "^0.5.0",
"ora": "^5.2.0",
"uint8arrays": "^2.0.5",
"update-notifier": "^5.0.1"
},
"devDependencies": {
"@ceramicnetwork/common": "^0.15.7",
"@oclif/dev-cli": "^1.26.0",
"@types/inquirer": "^7.3.1",
"@types/listr": "^0.14.2",
"@types/node": "^14.14.21",
"@types/update-notifier": "^5.0.0",
"eslint": "^7.18.0",
"eslint-config-3box": "^0.2.0",
"globby": "^11.0.2",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
}
}