-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
67 lines (67 loc) · 1.88 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": "3.1.6",
"description": "Hardhat plugin to deploy your smart contracts across multiple EVM chains with the same deterministic address.",
"author": "Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>",
"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 .",
"lint:fix": "pnpm prettier:fix && npx eslint . --fix",
"test": "mocha --exit --recursive \"test/**/*.test.ts\"",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "pnpm build"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@eslint/js": "^9.14.0",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@types/chai": "^4.3.20",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"chai": "^4.5.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"ethers": "^6.13.4",
"hardhat": "^2.22.15",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"peerDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"ethers": "^6.13.4",
"hardhat": "^2.22.15"
}
}