@gr33n-ai/jade-sdk-client 0.1.2 → 0.1.3

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.
Files changed (1) hide show
  1. package/package.json +15 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gr33n-ai/jade-sdk-client",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "TypeScript client for Jade AI - generate images, videos, and audio with AI",
5
5
  "license": "MIT",
6
6
  "author": "gr33n.ai",
@@ -37,8 +37,20 @@
37
37
  "files": [
38
38
  "dist"
39
39
  ],
40
+ "scripts": {
41
+ "build": "tsup",
42
+ "build:deps": "pnpm --filter @gr33n-ai/agent-sdk-client build",
43
+ "build:all": "pnpm run build:deps && pnpm run build",
44
+ "dev": "tsup --watch",
45
+ "test": "vitest",
46
+ "test:unit": "vitest --run",
47
+ "typecheck": "tsc --noEmit",
48
+ "lint": "eslint src/",
49
+ "playground": "vite playground",
50
+ "playground:build": "vite build playground"
51
+ },
40
52
  "dependencies": {
41
- "@gr33n-ai/agent-sdk-client": "0.1.0"
53
+ "@gr33n-ai/agent-sdk-client": "workspace:*"
42
54
  },
43
55
  "peerDependencies": {
44
56
  "react": ">=18.0.0",
@@ -64,17 +76,5 @@
64
76
  "vite": "^6.0.0",
65
77
  "vitest": "^2.0.0"
66
78
  },
67
- "sideEffects": false,
68
- "scripts": {
69
- "build": "tsup",
70
- "build:deps": "pnpm --filter @gr33n-ai/agent-sdk-client build",
71
- "build:all": "pnpm run build:deps && pnpm run build",
72
- "dev": "tsup --watch",
73
- "test": "vitest",
74
- "test:unit": "vitest --run",
75
- "typecheck": "tsc --noEmit",
76
- "lint": "eslint src/",
77
- "playground": "vite playground",
78
- "playground:build": "vite build playground"
79
- }
79
+ "sideEffects": false
80
80
  }