-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "soroswap-router-sdk",
"version": "1.3.0",
"repository": "https://github.com/soroswap/soroswap-router-sdk.git",
"author": "abstract829 <[email protected]>",
"licence": "GPL-3.0-only",
"scripts": {
"build": "tsdx build",
"docs": "typedoc",
"test": "jest",
"dev": "yarn jest --testPathPattern=pair.test.ts"
},
"private": false,
"files": [
"dist"
],
"module": "dist/soroswap-router-sdk.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"packageManager": "[email protected]",
"dependencies": {
"@stellar/stellar-sdk": "^11.3.0",
"axios": "^1.6.5",
"big.js": "^6.2.1",
"bigint-conversion": "^2.4.3",
"bignumber.js": "^9.1.2",
"bunyan": "^1.8.15",
"decimal.js-light": "^2.5.1",
"dotenv": "^16.4.0",
"jsbi": "^4.3.0",
"lodash": "^4.17.21",
"sinon": "^17.0.1",
"tiny-invariant": "^1.3.1",
"toformat": "^2.0.0"
},
"devDependencies": {
"@types/big.js": "^6.2.2",
"@types/bunyan": "^1.8.11",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.6",
"@types/react": "^18.2.65",
"@types/urijs": "^1.19.25",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsdx": "^0.14.1",
"typedoc": "^0.25.7",
"typescript": "4.6",
"utility-types": "^3.11.0"
}
}