-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
{
"name": "web3-proofs-helper",
"description": "This repository contains helper functions for getting web3 proofs.",
"version": "1.0.0",
"author": "Oleksandr Tkach",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Oleksandr Tkach",
"url": "https://github.com/Argeare5"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Argeare5/web3-proofs-helper.git"
},
"bugs": {
"url": "https://github.com/Argeare5/web3-proofs-helper/issues"
},
"homepage": "https://github.com/Argeare5/web3-proofs-helper",
"scripts": {
"start": "tsup src/index.ts --watch",
"build": "tsup",
"ci:publish": "npm run build && npm publish --access=public"
},
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^20.11.16",
"bignumber.js": "^9.1.2",
"esbuild-plugin-file-path-extensions": "^2.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.2.5",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"ethers": "^5.7.2"
}
}