-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "@enzoferey/ethers-error-parser",
"version": "0.2.3",
"license": "MIT",
"homepage": "https://github.com/enzoferey/ethers-error-parser",
"repository": {
"type": "git",
"url": "https://github.com/enzoferey/ethers-error-parser.git"
},
"keywords": [
"ethers-js",
"error",
"parsing"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/ethers-error-parser.umd.cjs",
"module": "./dist/ethers-error-parser.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/ethers-error-parser.js",
"require": "./dist/ethers-error-parser.umd.cjs"
}
},
"scripts": {
"build": "tsc && vite build",
"prepublishOnly": "yarn build",
"ts:check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint lib --max-warnings 0",
"test": "vitest",
"test:ci": "vitest --coverage --run"
},
"peerDependencies": {
"ethers": "^5.7.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@vitest/coverage-c8": "^0.22.1",
"c8": "^7.12.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "2.7.1",
"typescript": "^4.7.4",
"vite": "^3.0.9",
"vite-plugin-dts": "^1.4.1",
"vitest": "^0.22.1"
}
}