-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.94 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
69
70
{
"name": "xdeployer",
"version": "3.1.25",
"description": "Hardhat plugin to deploy your smart contracts across multiple EVM chains with the same deterministic address.",
"author": "pcaversaccio <pascal.caversaccio@hotmail.ch>",
"license": "MIT",
"funding": "https://github.com/pcaversaccio/xdeployer/blob/main/.github/FUNDING.yml",
"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"
},
"packageManager": "pnpm@11.14.0",
"scripts": {
"prettier:check": "prettier -c \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
"prettier:fix": "prettier -w \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
"lint:check": "pnpm prettier:check && eslint .",
"lint:fix": "pnpm prettier:fix && eslint . --fix",
"test": "mocha",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "pnpm build"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@eslint/js": "10.0.1",
"@nomicfoundation/hardhat-ethers": "3.1.3",
"@types/chai": "4.3.20",
"@types/fs-extra": "11.0.4",
"@types/mocha": "10.0.10",
"@types/node": "26.1.1",
"chai": "4.5.0",
"eslint": "10.7.0",
"eslint-config-prettier": "10.1.8",
"ethers": "6.17.0",
"globals": "17.7.0",
"hardhat": "2.28.6",
"mocha": "11.7.6",
"prettier": "3.9.5",
"prettier-plugin-solidity": "2.3.1",
"ts-node": "10.9.2",
"typescript": "6.0.3",
"typescript-eslint": "8.63.0"
},
"peerDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.1.3",
"ethers": "^6.17.0",
"hardhat": "^2.28.6"
}
}