-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1019 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": "@0xessential/signers",
"version": "0.0.1-beta-24",
"description": "",
"main": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "yarn tsc --project tsconfig.esm.json & yarn tsc --project tsconfig.cjs.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist",
"!**/*.spec.*",
"README.md"
],
"author": "sbauch",
"license": "MIT",
"dependencies": {
"@metamask/eth-sig-util": "^4.0.1",
"ethers": "^5.6.1"
},
"devDependencies": {
"@types/node": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.6.2",
"typescript": "^4.5.4"
},
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
}