@trantorapex/apex-sdk 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@trantorapex/apex-sdk",
3
+ "version": "0.1.0",
4
+ "description": "Apex SDK with a pinned internal Pancake v3 SDK fork plus Apex CL, Classic, and periphery helpers.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/index.cjs",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "files": [
11
+ "dist",
12
+ "vendor/pancake-v3-sdk/LICENSE",
13
+ "vendor/pancake-v3-sdk/README.md",
14
+ "vendor/pancake-v3-sdk/package.json",
15
+ "README.md"
16
+ ],
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "import": "./dist/index.js",
21
+ "require": "./dist/index.cjs"
22
+ }
23
+ },
24
+ "scripts": {
25
+ "build": "tsup",
26
+ "sync:abis": "node ./scripts/sync-abis.mjs",
27
+ "typecheck": "tsc --noEmit",
28
+ "test": "vitest run"
29
+ },
30
+ "dependencies": {
31
+ "@pancakeswap/chains": "0.8.0",
32
+ "@pancakeswap/sdk": "5.9.0",
33
+ "@pancakeswap/swap-sdk-core": "1.6.0",
34
+ "big.js": "^5.2.2",
35
+ "decimal.js-light": "^2.5.0",
36
+ "tiny-invariant": "^1.3.3",
37
+ "tiny-warning": "^1.0.3",
38
+ "toformat": "^2.0.0",
39
+ "viem": "2.37.13"
40
+ },
41
+ "devDependencies": {
42
+ "tsup": "^8.5.0",
43
+ "typescript": "^5.9.2",
44
+ "vitest": "^3.2.4"
45
+ }
46
+ }