-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 755 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 755 Bytes
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
{
"name": "viem-blobs-example",
"type": "module",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "node dest/index.js",
"start:dev": "ts-node-dev --respawn --transpile-only --exit-child --watch src src/index.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"description": "",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"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"
}
}