forked from pancakeswap/pancake-frontend
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.38 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
60
{
"name": "@pancakeswap/swap-sdk-core",
"license": "MIT",
"version": "1.0.0",
"description": "🛠 An SDK for building applications on top of Pancakeswap.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/pancakeswap/pancake-frontend.git",
"directory": "packages/swap-sdk"
},
"keywords": [
"pancakeswap"
],
"scripts": {
"lint": "eslint src test",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --globals --run",
"prepublishOnly": "pnpm run build",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"big.js": "^5.2.2",
"decimal.js-light": "^2.5.0",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3",
"toformat": "^2.0.0"
},
"peerDependencies": {},
"devDependencies": {
"vitest": "^0.27.2",
"@swc/core": "^1.2.215",
"@swc/jest": "^0.2.21",
"@types/big.js": "^4.0.5",
"@types/jest": "^24.0.25",
"tsup": "^6.7.0"
},
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}