@t402/smart-router 1.0.0-beta.1

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,70 @@
1
+ {
2
+ "name": "@t402/smart-router",
3
+ "version": "1.0.0-beta.1",
4
+ "description": "Smart payment routing engine with multi-chain optimization",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/t402-io/t402.git",
10
+ "directory": "typescript/packages/advanced/smart-router"
11
+ },
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "main": "./dist/index.js",
16
+ "module": "./dist/index.js",
17
+ "types": "./dist/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "import": "./dist/index.js",
21
+ "types": "./dist/index.d.ts"
22
+ },
23
+ "./routing": {
24
+ "import": "./dist/routing/index.js",
25
+ "types": "./dist/routing/index.d.ts"
26
+ },
27
+ "./pricing": {
28
+ "import": "./dist/pricing/index.js",
29
+ "types": "./dist/pricing/index.d.ts"
30
+ },
31
+ "./liquidity": {
32
+ "import": "./dist/liquidity/index.js",
33
+ "types": "./dist/liquidity/index.d.ts"
34
+ },
35
+ "./execution": {
36
+ "import": "./dist/execution/index.js",
37
+ "types": "./dist/execution/index.d.ts"
38
+ }
39
+ },
40
+ "files": [
41
+ "dist",
42
+ "README.md"
43
+ ],
44
+ "scripts": {
45
+ "build": "tsup",
46
+ "dev": "tsup --watch",
47
+ "test": "vitest run",
48
+ "test:watch": "vitest",
49
+ "typecheck": "tsc --noEmit",
50
+ "clean": "rm -rf dist"
51
+ },
52
+ "dependencies": {
53
+ "zod": "^3.25.0"
54
+ },
55
+ "devDependencies": {
56
+ "@types/node": "^22.0.0",
57
+ "tsup": "^8.0.0",
58
+ "typescript": "^5.7.0",
59
+ "vitest": "^3.0.0"
60
+ },
61
+ "keywords": [
62
+ "t402",
63
+ "payment",
64
+ "routing",
65
+ "cross-chain",
66
+ "optimization",
67
+ "bridge"
68
+ ],
69
+ "author": "T402 Team"
70
+ }