forked from pcaversaccio/xdeployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.91 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "xdeployer",
"version": "2.1.13",
"description": "Hardhat plugin to deploy your smart contracts across multiple EVM chains with the same deterministic address.",
"author": "Pascal Marco Caversaccio <[email protected]>",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"deployment",
"ethereum",
"create2",
"hardhat",
"hardhat-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pcaversaccio/xdeployer.git"
},
"homepage": "https://github.com/pcaversaccio/xdeployer#readme",
"bugs": {
"url": "https://github.com/pcaversaccio/xdeployer/issues"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"prettier:check": "npx prettier -c **/*.{js,ts,md,sol,json,yml,yaml}",
"prettier:fix": "npx prettier -w **/*.{js,ts,md,sol,json,yml,yaml}",
"lint:check": "pnpm prettier:check && npx eslint --ext .ts .",
"lint:fix": "pnpm prettier:fix && npx eslint --ext .ts . --fix",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "pnpm build"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@types/chai": "^4.3.9",
"@types/fs-extra": "^11.0.3",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"chai": "^4.3.10",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"ethers": "^6.8.1",
"hardhat": "^2.19.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"ethers": "^6.8.1",
"hardhat": "^2.19.0"
}
}