-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.69 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.69 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
{
"name": "@soroswap/sdk",
"version": "0.4.0",
"description": "Official TypeScript SDK for Soroswap.Finance API - DEX and exchange aggregator on Stellar",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:unit": "jest",
"test:integration": "jest --config=jest.integration.config.js",
"test:all": "pnpm run test:unit && pnpm run test:integration",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm test && pnpm run lint",
"clean": "rimraf dist"
},
"keywords": [
"soroswap",
"stellar",
"soroban",
"dex",
"defi",
"aggregator",
"swap",
"liquidity",
"sdk",
"typescript"
],
"author": "Soroswap Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/soroswap/sdk.git"
},
"bugs": {
"url": "https://github.com/soroswap/sdk/issues"
},
"homepage": "https://soroswap.finance",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.30.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.4",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"dotenv": "^16.5.0",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"jest": "^30.0.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.10.0"
},
"engines": {
"node": ">=22.0.0"
}
}