-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1011 Bytes
/
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
{
"name": "@etherspot/eip1271-verification-util",
"version": "0.1.2",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": "https://github.com/etherspot/eip1271-verification-util.git",
"author": "yash@pillarproject.io",
"license": "MIT",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"prepare": "npm run rollup:build",
"rollup:build": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c",
"rollup:watch": "rollup -c -w"
},
"dependencies": {
"ethers": "5.6.9"
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.3.3",
"dotenv": "16.0.3",
"rollup": "2.76.0",
"rollup-plugin-dts": "4.2.2",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-terser": "7.0.2",
"tslib": "^2.5.2",
"typescript": "4.7.4"
},
"browser": {
"fs": false
}
}