-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "@enzoferey/network-gas-price",
"version": "0.3.6",
"license": "MIT",
"homepage": "https://github.com/enzoferey/network-gas-price",
"repository": {
"type": "git",
"url": "https://github.com/enzoferey/network-gas-price.git"
},
"keywords": [
"ethereum",
"polygon",
"blockchain",
"gas-price",
"gas-fees"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/network-gas-price.umd.cjs",
"module": "./dist/network-gas-price.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/network-gas-price.js",
"require": "./dist/network-gas-price.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": {
"isomorphic-unfetch": ">=4.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"c8": "^7.12.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"isomorphic-unfetch": "^4.0.2",
"prettier": "2.7.1",
"typescript": "^4.7.4",
"vite": "^3.0.2",
"vite-plugin-dts": "^1.4.0",
"vitest": "^0.18.1"
}
}