-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.05 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
{
"name": "goe-cli",
"version": "0.2.0",
"type": "module",
"bin": {
"git-remote-goe": "./dist/helper/index.js",
"goe": "./dist/cli/index.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist"
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"keywords": [
"git",
"remote",
"ethereum",
"ethstorage",
"git-remote-helper"
],
"author": "EthStorage",
"license": "MIT",
"dependencies": {
"@types/readline-sync": "^1.4.8",
"@types/url-parse": "^1.4.11",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"ethers": "^6.12.0",
"ethstorage-sdk": "^4.2.4",
"keytar": "^7.9.0",
"p-limit": "^7.2.0",
"readline-sync": "^1.4.10",
"rxjs": "^7.8.2",
"rxjs-async-map": "^0.3.0-preview.0",
"rxjs-stream": "^5.0.0",
"superpathjoin": "^2.0.1",
"url-parse": "^1.5.10",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/node": "^24.9.1",
"typescript": "^5.9.3"
}
}