-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.47 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": "@rocketh/deploy",
"version": "0.19.21",
"description": "Deploy EVM smart contracts with deterministic CREATE2 and CREATE3 support, for rocketh and hardhat-deploy.",
"keywords": [
"rocketh",
"ethereum",
"evm",
"solidity",
"smart-contracts",
"deployment",
"deploy",
"hardhat-deploy",
"create2",
"create3",
"deterministic-deployment"
],
"author": "Ronan Sandford",
"license": "MIT",
"homepage": "https://github.com/wighawag/rocketh/blob/main/packages/rocketh-deploy/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/wighawag/rocketh.git",
"directory": "packages/rocketh-deploy"
},
"bugs": {
"url": "https://github.com/wighawag/rocketh/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"src"
],
"dependencies": {
"@rocketh/core": "workspace:*",
"abitype": "^1.3.0",
"eip-1193": "^0.6.5",
"named-logs": "^0.4.1",
"viem": "^2.55.13"
},
"devDependencies": {
"@rocketh/test-utils": "workspace:*",
"as-soon": "^0.1.6",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"scripts": {
"prepublishOnly": "cp ../../LICENSE LICENSE",
"build": "tsc --project tsconfig.build.json",
"dev": "as-soon -w src pnpm build",
"test": "vitest"
}
}