@supyagent/sdk 0.1.21 → 0.1.22

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supyagent/sdk",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "description": "Supyagent SDK — AI SDK tools, persistence, and UI components",
5
5
  "type": "module",
6
6
  "exports": {
@@ -28,6 +28,13 @@
28
28
  "files": [
29
29
  "dist"
30
30
  ],
31
+ "scripts": {
32
+ "build": "tsup",
33
+ "test": "vitest run",
34
+ "test:watch": "vitest",
35
+ "clean": "rm -rf dist",
36
+ "playground": "cd playground && pnpm dev"
37
+ },
31
38
  "dependencies": {
32
39
  "ai": "^6.0.0"
33
40
  },
@@ -65,12 +72,5 @@
65
72
  "typescript": "^5.7.0",
66
73
  "vitest": "^2.1.0"
67
74
  },
68
- "license": "MIT",
69
- "scripts": {
70
- "build": "tsup",
71
- "test": "vitest run",
72
- "test:watch": "vitest",
73
- "clean": "rm -rf dist",
74
- "playground": "cd playground && pnpm dev"
75
- }
76
- }
75
+ "license": "MIT"
76
+ }