@zyfai/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,83 @@
1
+ {
2
+ "name": "@zyfai/sdk",
3
+ "version": "0.1.0",
4
+ "description": "TypeScript SDK for ZyFAI Yield Optimization Engine - Deploy Safe smart wallets, manage session keys, and interact with DeFi protocols",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": {
11
+ "types": "./dist/index.d.mts",
12
+ "default": "./dist/index.mjs"
13
+ },
14
+ "require": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ }
18
+ }
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md",
23
+ "LICENSE"
24
+ ],
25
+ "sideEffects": false,
26
+ "scripts": {
27
+ "build": "tsup src/index.ts --format cjs,esm --dts",
28
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
29
+ "lint": "eslint src --ext .ts",
30
+ "test": "jest",
31
+ "prepublishOnly": "npm run build"
32
+ },
33
+ "keywords": [
34
+ "zyfai",
35
+ "defi",
36
+ "yield",
37
+ "yield-optimization",
38
+ "web3",
39
+ "ethereum",
40
+ "smart-wallet",
41
+ "safe",
42
+ "erc-4337",
43
+ "account-abstraction",
44
+ "session-keys",
45
+ "arbitrum",
46
+ "base",
47
+ "typescript",
48
+ "sdk"
49
+ ],
50
+ "author": "Zyfai <ayushgupta0610@gmail.com>",
51
+ "license": "MIT",
52
+ "homepage": "https://zyf.ai",
53
+ "bugs": {
54
+ "url": "https://github.com/zyfai/zyfai-sdk/issues"
55
+ },
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/zyfai/zyfai-sdk.git"
59
+ },
60
+ "engines": {
61
+ "node": ">=18.0.0"
62
+ },
63
+ "dependencies": {
64
+ "@rhinestone/module-sdk": "^0.2.10",
65
+ "axios": "^1.6.0",
66
+ "permissionless": "^0.2.38",
67
+ "siwe": "^3.0.0"
68
+ },
69
+ "devDependencies": {
70
+ "@types/node": "^20.0.0",
71
+ "dotenv": "^17.2.3",
72
+ "tsup": "^8.0.0",
73
+ "typescript": "^5.3.0"
74
+ },
75
+ "peerDependencies": {
76
+ "viem": "^2.0.0"
77
+ },
78
+ "peerDependenciesMeta": {
79
+ "viem": {
80
+ "optional": false
81
+ }
82
+ }
83
+ }