forked from jonashoyer/web3-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 KB
/
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": "web3-token",
"version": "0.0.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"sideEffects": false,
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm run build:esm && pnpm run build:cjs",
"build:esm": "tsc --moduleResolution node",
"build:cjs": "tsc --moduleResolution node --module commonjs --outDir dist/cjs",
"dev": "concurrently \"pnpm:build:esm --watch\" \"pnpm:build:cjs --watch\"",
"clean": "rimraf dist .turbo node_modules"
},
"dependencies": {
"ms": "^2.1.3",
"uuid": "^8.3.2",
"viem": "^1.0.0"
},
"devDependencies": {
"@ethereumjs/util": "^8.0.5",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@types/ms": "^0.7.31",
"@types/node": "^18.14.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"concurrently": "^7.4.0",
"eslint": "^8.24.0",
"typescript": "^5.0.4",
"web3": "^1.8.2"
},
"peerDependencies": {
"@ethereumjs/util": "^8.0.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"web3": "^1.8.0"
}
}