forked from openscan-explorer/hardhat-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.58 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
{
"name": "@openscan/hardhat-plugin",
"version": "1.0.2",
"description": "Hardhat 3 plugin to use openscan explorer",
"license": "MIT",
"type": "module",
"types": "dist/src/index.d.ts",
"exports": {
".": "./dist/src/index.js"
},
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat3",
"hardhat-plugin",
"OpenScan"
],
"scripts": {
"lint": "pnpm prettier --check && pnpm eslint",
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
"eslint": "eslint \"src/**/*.ts\"",
"prettier": "prettier \"**/*.{ts,js,md,json}\"",
"build": "tsc --build .",
"prepublishOnly": "pnpm build",
"prebuild": "pnpm clean",
"clean": "rimraf dist",
"watch": "tsc --build . --watch"
},
"files": [
"dist/src/",
"src/",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"dependencies": {
"@openscan/explorer": "1.1.1-alpha"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@nomicfoundation/hardhat-node-test-reporter": "^3.0.0",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^22.11.0",
"c8": "^9.1.0",
"eslint": "^9.35.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"hardhat": "^3.1.5",
"prettier": "3.6.2",
"rimraf": "^5.0.5",
"tsx": "^4.19.3",
"typescript": "~5.8.0",
"typescript-eslint": "^8.43.0"
},
"peerDependencies": {
"hardhat": "^3.1.5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/openscan-explorer/hardhat-plugin"
}
}