-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.72 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
55
56
{
"name": "uniswap-quoteswapper",
"version": "0.0.1",
"scripts": {
"build": "tsc && vite build",
"format": "prettier ./src --write",
"lint": "eslint ./src --ext .ts",
"test": "jest",
"ci": "npm run format && npm run lint && npm run test && npm run build",
"publish:preview": "npm pack --dry-run"
},
"files": [
"dist"
],
"description": "🦄 Get swap estimates and execute trades on Uniswap programmatically",
"author": "Mathieu Artu",
"license": "MIT",
"homepage": "https://github.com/mathieuartu/uniswap-quoteswapper",
"repository": {
"type": "git",
"url": "https://github.com/mathieuartu/uniswap-quoteswapper.git"
},
"bugs": {
"url": "https://github.com/mathieuartu/uniswap-quoteswapper/issues"
},
"keywords": [
"package"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"prettier-plugin-jsdoc": "^0.4.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.1.0",
"vite-plugin-dts": "^1.7.2"
},
"dependencies": {
"@uniswap/sdk-core": "^3.1.1",
"@uniswap/v3-periphery": "^1.4.3",
"@uniswap/v3-sdk": "^3.9.0",
"ethers": "^6.0.2",
"jsbi": "^4.3.0"
}
}