-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 1.88 KB
/
package.json
File metadata and controls
executable file
·80 lines (80 loc) · 1.88 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@quickswap-defi/sdk",
"license": "MIT",
"version": "1.0.1",
"description": "🛠 An SDK for building applications on top of Quickswap.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/QuickSwap/QuickSwap-sdk",
"keywords": [
"quickswap",
"matic",
"ethereum"
],
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"lint": "eslint src test",
"build": "tsup",
"start": "tsup --watch",
"test": "vitest run",
"prepublishOnly": "tsup"
},
"dependencies": {
"@uniswap/v2-core": "^1.0.0",
"big.js": "^5.2.2",
"decimal.js-light": "^2.5.0",
"jsbi": "^3.1.1",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3",
"toformat": "^2.0.0"
},
"peerDependencies": {
"@ethersproject/address": "^5.0.0-beta",
"@ethersproject/contracts": "^5.0.0-beta",
"@ethersproject/networks": "^5.0.0-beta",
"@ethersproject/providers": "^5.0.0-beta",
"@ethersproject/solidity": "^5.0.0-beta"
},
"devDependencies": {
"@ethersproject/address": "^5.0.2",
"@ethersproject/contracts": "^5.0.2",
"@ethersproject/networks": "^5.0.2",
"@ethersproject/providers": "^5.0.5",
"@ethersproject/solidity": "^5.0.2",
"@types/big.js": "^4.0.5",
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"provenance": "true"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"pnpm": {
"overrides": {
"minimatch@<3.1.4": "^3.1.4",
"form-data@<2.5.4": "^2.5.4"
}
}
}