generated from web3/web3.js-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.9 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
{
"name": "@node-real/web3-plugin-bundle",
"version": "2.3.0",
"description": "bundle plugin to extend web3.js with additional methods",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"homepage": "https://github.com/node-real/web3.js-plugin-bundle#readme",
"bugs": {
"url": "https://github.com/node-real/web3.js-plugin-bundle/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"prepare": "husky install",
"version": "pnpm install && changeset version",
"clean": "rimraf node_modules **/*/node_modules",
"build": "rollup -c --bundleConfigAsCjs",
"lint": "prettier --write './src/*.{ts,tsx,js,jsx}' && eslint ./src/ --ext .js,.jsx,.ts,.tsx --fix",
"test": "jest --runInBand './test/*' --config './test/jest.config.js'"
},
"contributors": [
"rekyyang <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:node-real/web3.js-plugin-bundle.git"
},
"dependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"inflight": "^1.0.6",
"rollup": "^4.18.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"web3-core": "^4.3.2",
"web3-types": "^1.6.0"
},
"devDependencies": {
"@chainsafe/eslint-config": "^2.0.0",
"@changesets/cli": "^2.27.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.2.6",
"eslint": "8",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-extended": "^4.0.0",
"rimraf": "^3.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"web3": "^4.2.2"
},
"peerDependencies": {
"web3": ">= 4.0.3"
}
}