-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·42 lines (42 loc) · 897 Bytes
/
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
{
"name": "@adraffy/blocksmith",
"version": "0.1.47",
"description": "Minimal Ethereum Testing Framework for Foundry + ethers",
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"files": [
"./dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adraffy/blocksmith.js.git"
},
"license": "MIT",
"homepage": "https://github.com/adraffy/blocksmith.js#readme",
"author": "raffy.eth",
"scripts": {
"start": "node test/deploy/test.js",
"test": "node test/test-quick.js",
"test-all": "node test/test-all.js",
"build": "cp dist/index.d.mts dist/index.d.cts && rollup -c && npm pack"
},
"dependencies": {
"ethers": "^6.13.4"
},
"devDependencies": {
"rollup": "^4.24.0"
},
"keywords": [
"Ethereum",
"Solidity",
"Foundry",
"Forge",
"Anvil",
"Hardhat",
"ENS",
"Ethereum Naming System"
]
}