-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 1.8 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
{
"name": "web3stash",
"version": "0.0.5",
"description": "Web3Stash is a standard library to get a single api to connect to multiple decentralised storage service providers",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "dist/mjs",
"scripts": {
"clean": "rm -rf dist",
"test": "jest",
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && bash ./setup && node fix.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbcse/web3stash.git"
},
"keywords": [
"blockchain",
"web3stash",
"web3store",
"pinata",
"arweave",
"ipfsjs",
"ipfshttpclient",
"decentralised storage"
],
"author": "Mohit Bhat",
"license": "ISC",
"bugs": {
"url": "https://github.com/mbcse/web3stash/issues"
},
"homepage": "https://theblockchainchief.gitbook.io/web3stash/",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-xo": "^0.42.0",
"eslint-config-xo-typescript": "^0.53.0",
"jest": "^29.0.3",
"typescript": "^4.8.2"
},
"dependencies": {
"@bundlr-network/client": "^0.8.5",
"@helia/json": "^1.0.0",
"@helia/strings": "^1.0.0",
"@helia/unixfs": "^1.3.0",
"@lighthouse-web3/sdk": "^0.1.6",
"@pinata/sdk": "^1.1.26",
"@types/mime-types": "^2.1.1",
"arweave": "^1.11.6",
"arweave-stream-tx": "^1.1.0",
"helia": "^1.3.2",
"ipfs-http-client": "^56.0.2",
"mime-types": "^2.1.35",
"nft.storage": "^7.0.0",
"web3.storage": "^4.4.0"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}