lane-sdk 0.2.8 → 0.2.9
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.
Potentially problematic release.
This version of lane-sdk might be problematic. Click here for more details.
- package/SKILL.md +124 -20
- package/dist/cli/index.js +56 -6
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/postinstall.js +2 -0
- package/dist/cli/postinstall.js.map +1 -1
- package/dist/server/routes/export.cjs +4 -2
- package/dist/server/routes/export.cjs.map +1 -1
- package/dist/server/routes/export.d.cts +10 -0
- package/dist/server/routes/export.d.ts +10 -0
- package/dist/server/routes/export.js +4 -2
- package/dist/server/routes/export.js.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lane-sdk",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"description": "Add wallets and payments to your AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"SKILL.md"
|
|
63
63
|
],
|
|
64
64
|
"scripts": {
|
|
65
|
-
"build": "cp SKILL.md public/SKILL.md && tsup",
|
|
65
|
+
"build": "cp SKILL.md public/SKILL.md && tsup && cp server/routes/export.d.ts dist/server/routes/export.d.ts && cp server/routes/export.d.ts dist/server/routes/export.d.cts",
|
|
66
66
|
"dev": "tsup --watch",
|
|
67
67
|
"test": "vitest run",
|
|
68
68
|
"test:watch": "vitest",
|
|
@@ -111,6 +111,7 @@
|
|
|
111
111
|
"express": "^5.2.1",
|
|
112
112
|
"figlet": "^1.11.0",
|
|
113
113
|
"gradient-string": "^3.0.0",
|
|
114
|
+
"lane-sdk": "^0.2.8",
|
|
114
115
|
"open": "^11.0.0",
|
|
115
116
|
"ora": "^9.3.0",
|
|
116
117
|
"zod": "^4.3.6"
|