-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.82 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": "web3-ipfs-plugin",
"version": "1.0.0",
"description": "Plugin for Web3.js library, designed for uploading files to IPFS, storing CIDs in a smart contract, and listing all stored CIDs of given ethereum address",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://git@github.com:jc992/web3js-ipfs-plugin",
"bugs": {
"url": "https://github.com/web3/web3.js-plugin-template/issues"
},
"scripts": {
"lint": "eslint '{src,test}/**/*.ts'",
"build": "tsc --project tsconfig.build.json",
"test": "jest --verbose",
"test:e2e": "IS_E2E=true jest --verbose",
"test:browser": "karma start karma.config.js"
},
"contributors": [
"ffmcgee <joao@chainsafe.io>"
],
"browser": {
"fs": false,
"child_process": false
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:jc992/web3js-ipfs-plugin.git"
},
"dependencies": {
"@thirdweb-dev/storage": "^2.0.5",
"thirdweb": "0.13.18"
},
"devDependencies": {
"@chainsafe/eslint-config": "^2.0.0",
"@cypress/webpack-preprocessor": "^6.0.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.6",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.3.1",
"eslint": "8",
"jasmine": "^5.1.0",
"jest": "^29.5.0",
"jest-extended": "^4.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-webpack": "^5.0.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"web3": "^4.2.2",
"web3-core": "^4.3.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"peerDependencies": {
"web3": ">= 4.0.3"
}
}