-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 926 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
{
"name": "viem-blobs-example",
"type": "module",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "node dest/index.js",
"test": "export PRIV_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:anvil": "concurrently \"anvil\" \"sleep 1 && yarn test\"",
"test:hardhat": "concurrently \"npx hardhat node\" \"sleep 1 && yarn test\""
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"description": "",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"concurrently": "^8.2.2",
"hardhat": "^2.22.6",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
},
"dependencies": {
"c-kzg": "^4.0.0-alpha.1",
"path": "^0.12.7",
"viem": "^2.17.2"
}
}