-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 859 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 859 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
31
{
"name": "web3-sdk",
"version": "1.0.0",
"description": "Web3 ABI wrapper used to interactive with RPC on DePocket Data Transform on Edge Function",
"repository": "https://github.com/depocket/web3-sdk",
"author": "Himitsuko",
"license": "GNU",
"private": true,
"module": "lib/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"ts-types": "tsc --emitDeclarationOnly --outDir lib",
"build": "rimraf lib && node ./esbuild.config.js && npm run ts-types",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"esbuild": "^0.15.6",
"jest": "^29.0.2",
"node-stdlib-browser": "^1.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
},
"dependencies": {
"ethers": "^6.7.1",
"ethjs-abi": "^0.2.1"
}
}