-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 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
{
"name": "@filebase/cli",
"version": "0.0.2",
"description": "CLI for Interacting with Filebase Services [S3(Buckets, Objects), IPFS(Gateways, Pins) IPNS(Names)]",
"repository": {
"type": "git",
"url": "git+https://github.com/filebase/filebase-cli.git"
},
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"filebase": "dist/index.js"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "tsup src/index.mjs",
"package": "node --experimental-sea-config sea-config.json"
},
"keywords": [
"filebase",
"filebase-cli",
"s3",
"ipfs",
"ipns",
"cli",
"web3",
"distributed"
],
"dependencies": {
"@filebase/sdk": "1.0.4",
"@inquirer/select": "2.0.0",
"commander": "11.1.0",
"inquirer": "9.2.14",
"omelette": "0.4.17",
"recursive-fs": "2.1.0",
"tty-table": "4.2.3"
},
"devDependencies": {
"postject": "1.0.0-alpha.6",
"prettier": "3.2.4",
"tsup": "8.0.1",
"typescript": "5.3.3"
}
}