@jimmygu/sfa-sdk-test 1.0.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,79 @@
1
+ {
2
+ "name": "@jimmygu/sfa-sdk-test",
3
+ "version": "1.0.0",
4
+ "description": "TypeScript SDK for StableFlow AI API - Cross-chain token swap solution",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "require": "./dist/index.js",
12
+ "import": "./dist/index.mjs"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "engines": {
21
+ "node": ">=16"
22
+ },
23
+ "scripts": {
24
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
25
+ "clean": "rm -rf dist node_modules",
26
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
27
+ "prepublishOnly": "npm run build",
28
+ "test": "echo \"No tests specified\" && exit 0"
29
+ },
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/stableflow-ai/stableflow-ai-sdk.git"
33
+ },
34
+ "bugs": {
35
+ "url": "https://github.com/stableflow-ai/stableflow-ai-sdk/issues"
36
+ },
37
+ "homepage": "https://github.com/stableflow-ai/stableflow-ai-sdk#readme",
38
+ "keywords": [
39
+ "stableflow",
40
+ "ai",
41
+ "sdk",
42
+ "typescript",
43
+ "swap",
44
+ "cross-chain",
45
+ "defi",
46
+ "blockchain",
47
+ "bridge",
48
+ "usdt",
49
+ "ethereum",
50
+ "arbitrum",
51
+ "polygon"
52
+ ],
53
+ "author": "StableFlow AI",
54
+ "license": "MIT",
55
+ "publishConfig": {
56
+ "access": "public"
57
+ },
58
+ "devDependencies": {
59
+ "@types/big.js": "^6.2.2",
60
+ "tsup": "^8.5.1",
61
+ "typescript": "^5.9.3"
62
+ },
63
+ "peerDependencies": {
64
+ "@aptos-labs/ts-sdk": "^5.1.1",
65
+ "@coral-xyz/anchor": "^0.29.0",
66
+ "@layerzerolabs/lz-solana-sdk-v2": "^3.0.154",
67
+ "@layerzerolabs/lz-v2-utilities": "^3.0.151",
68
+ "@metaplex-foundation/umi": "^0.9.2",
69
+ "@solana/spl-token": "^0.4.14",
70
+ "@solana/web3.js": "^1.98.4",
71
+ "axios": "^1.6.8",
72
+ "big.js": "^7.0.1",
73
+ "bs58": "^6.0.0",
74
+ "buffer": "^6.0.3",
75
+ "ethers": "^6.13.5",
76
+ "form-data": "^4.0.0",
77
+ "tronweb": "^6.0.4"
78
+ }
79
+ }