-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.43 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
{
"name": "@filebase/sdk",
"version": "1.0.6",
"description": "SDK for Interacting with Filebase Services [S3(Buckets, Objects), IPFS(Gateways, Pins) IPNS(Names)]",
"repository": {
"type": "git",
"url": "git+https://github.com/filebase/filebase-sdk.git"
},
"license": "MIT",
"main": "./dist/index.js",
"module": "./src/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./src/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "tsup src/index.js --format cjs --dts --clean",
"test": "node --test",
"doc": "jsdoc -c jsdoc.json"
},
"keywords": [
"filebase",
"filebase-sdk",
"s3",
"ipfs",
"ipns",
"sdk",
"web3",
"distributed"
],
"devDependencies": {
"clean-jsdoc-theme": "4.2.17",
"jsdoc": "4.0.2",
"prettier": "3.1.0",
"tsup": "8.0.1",
"typescript": "5.3.3"
},
"dependencies": {
"@aws-sdk/client-s3": "3.478.0",
"@aws-sdk/lib-storage": "3.478.0",
"@helia/car": "1.0.4",
"@helia/mfs": "3.0.1",
"@helia/unixfs": "1.4.3",
"@ipld/car": "5.2.4",
"axios": "1.6.2",
"blockstore-fs": "1.1.10",
"blockstore-core": "4.4.1",
"datastore-core": "9.2.9",
"p-queue": "8.0.1",
"uuid": "9.0.1",
"winston": "3.12.0"
}
}