-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
package.json
59 lines (59 loc) · 1.33 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
57
58
59
{
"name": "@pancakeswap/v3-sdk",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"version": "3.8.12",
"description": "⚒️ An SDK for building applications on top of Pancakeswap V3",
"files": [
"dist"
],
"keywords": [
"pancakeswap",
"bsc"
],
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --run",
"update:snapshot": "vitest -u",
"coverage": "vitest run --coverage",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@pancakeswap/chains": "workspace:*",
"@pancakeswap/sdk": "workspace:*",
"@pancakeswap/swap-sdk-core": "workspace:*",
"big.js": "^5.2.2",
"decimal.js-light": "^2.5.0",
"tiny-invariant": "^1.3.0",
"tiny-warning": "^1.0.3",
"toformat": "^2.0.0",
"viem": "catalog:"
},
"devDependencies": {
"@pancakeswap/utils": "workspace:*",
"tsup": "^6.7.0"
},
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
}
}