-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "@pancakeswap/aptos-swap-sdk",
"license": "MIT",
"version": "1.0.6",
"description": "🛠 An SDK for building applications on top of Pancakeswap Aptos.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/pancakeswap/pancake-frontend.git",
"directory": "packages/atpos-swap-sdk"
},
"keywords": [
"pancakeswap",
"aptos"
],
"scripts": {
"lint": "eslint src",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --run",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@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"
},
"peerDependencies": {
"@aptos-labs/ts-sdk": "1.x"
},
"devDependencies": {
"@aptos-labs/ts-sdk": "catalog:",
"@types/big.js": "^4.0.5",
"tsup": "^6.7.0"
},
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}