-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@normalizex/uniswap-contract",
"version": "1.0.2",
"description": "library for web3 methods of uniswap contract",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=11.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Normalizex/uniswap-contract.git"
},
"homepage": "https://github.com/Normalizex/uniswap-contract#readme",
"author": "Normalizex",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc && webpack",
"prepublish": "npm run build"
},
"keywords": [
"web3",
"wrapper",
"defi",
"abi",
"blockchain",
"uniswap",
"ethereum"
],
"devDependencies": {
"@types/node": "17.0.31",
"assert": "2.0.0",
"crypto-browserify": "3.12.0",
"fork-ts-checker-webpack-plugin": "7.2.13",
"https-browserify": "1.0.0",
"os-browserify": "0.3.0",
"process": "0.11.10",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"terser-webpack-plugin": "5.3.6",
"ts-loader": "9.3.1",
"typescript": "4.6.4",
"url": "0.11.0",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
},
"dependencies": {
"web3": "1.7.3"
}
}