-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.21 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
{
"name": "@poap/confirm-with-ethereum",
"version": "0.0.8",
"description": "Confirm an action with an EVM compatible wallet",
"main": "./dist/development/index.js",
"browser": "./dist/browser/index.js",
"module": "./dist/module/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-browser": "BABEL_ENV=browser babel ./src --out-dir ./dist/browser --source-maps --copy-files",
"build-module": "BABEL_ENV=module babel ./src --out-dir ./dist/module --source-maps --copy-files",
"build-development": "BABEL_ENV=development babel ./src --out-dir ./dist/development --source-maps --copy-files",
"build": "npm run build-development && npm run build-browser && npm run build-module",
"prepare": "husky install",
"lint": "eslint --fix src"
},
"author": "Mentor <mentor@palokaj.co> (http://github.com/actuallymentor)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@poap/skunk-linter": "^0.0.2",
"eslint": "^8.35.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3"
},
"dependencies": {
"ethers": "^5.7.2"
}
}