-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.6 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.6 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@evmexplorer/utility",
"version": "0.0.5",
"description": "EVM Explorer utility sdk",
"main": "dist/index.js",
"homepage": "https://github.com/Pfed-prog/EVMExplorer-utilities",
"scripts": {
"build": "tsup",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"lint": "tsc",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci",
"test": "vitest run",
"dev": "vitest"
},
"keywords": [
"evmexplorer",
"blockscout",
"eth",
"ethereum",
"optimism",
"utilities",
"web3",
"typescript",
"types",
"viem",
"uniswap"
],
"author": "Pavel Fedotov",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@changesets/cli": "^2.27.9",
"@types/node": "^24.0.0",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vitest": "^3.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pfed-prog/EVMExplorer-utilities.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/Pfed-prog/EVMExplorer-utilities/issues"
},
"dependencies": {
"viem": "^2.21.24"
},
"publishConfig": {
"access": "public"
}
}