forked from jonashoyer/web3-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1002 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
{
"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,
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"dev": "concurrently \"npm:build:esm -- --watch\" \"npm:build:cjs -- --watch\"",
"clean": "rimraf dist .turbo node_modules",
"test": "ts-node src/test.ts"
},
"dependencies": {
"ms": "^2.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/ms": "^0.7.31",
"@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": "^4.8.3"
},
"peerDependencies": {
"@ethereumjs/util": "^8.0.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"web3": "^1.8.0"
}
}