@megaflow-labs/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,66 @@
1
+ {
2
+ "name": "@megaflow-labs/sdk",
3
+ "version": "0.1.0",
4
+ "description": "Batch transaction SDK for MegaETH — compose, simulate and execute multiple on-chain operations in a single atomic transaction.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.mjs",
11
+ "require": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "CHANGELOG.md"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
22
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "lint": "eslint src --ext .ts",
26
+ "typecheck": "tsc --noEmit",
27
+ "prepublishOnly": "npm run build"
28
+ },
29
+ "keywords": [
30
+ "megaeth",
31
+ "megaflow",
32
+ "ethereum",
33
+ "l2",
34
+ "evm",
35
+ "transaction-builder",
36
+ "batch-transactions",
37
+ "atomic",
38
+ "defi",
39
+ "router",
40
+ "web3",
41
+ "viem"
42
+ ],
43
+ "author": "MegaFlow Labs <contact@megaflow.space>",
44
+ "license": "MIT",
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "https://github.com/megaflow-labs/sdk"
48
+ },
49
+ "homepage": "https://megaflow.space",
50
+ "dependencies": {
51
+ "viem": "^2.0.0"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^20.0.0",
55
+ "eslint": "^8.0.0",
56
+ "tsup": "^8.0.0",
57
+ "typescript": "^5.0.0",
58
+ "vitest": "^1.0.0"
59
+ },
60
+ "peerDependencies": {
61
+ "viem": "^2.0.0"
62
+ },
63
+ "engines": {
64
+ "node": ">=18.0.0"
65
+ }
66
+ }