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

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": "@gr33n-ai/jade-sdk-client",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "TypeScript client for Jade AI - generate images, videos, and audio with AI",
5
5
  "license": "MIT",
6
6
  "author": "gr33n.ai",
@@ -32,30 +32,13 @@
32
32
  "types": "./dist/index.d.ts",
33
33
  "import": "./dist/index.js",
34
34
  "require": "./dist/index.cjs"
35
- },
36
- "./react": {
37
- "types": "./dist/react/index.d.ts",
38
- "import": "./dist/react/index.js",
39
- "require": "./dist/react/index.cjs"
40
35
  }
41
36
  },
42
37
  "files": [
43
38
  "dist"
44
39
  ],
45
- "scripts": {
46
- "build": "tsup",
47
- "build:deps": "pnpm --filter @gr33n-ai/agent-sdk-client build",
48
- "build:all": "pnpm run build:deps && pnpm run build",
49
- "dev": "tsup --watch",
50
- "test": "vitest",
51
- "test:unit": "vitest --run",
52
- "typecheck": "tsc --noEmit",
53
- "lint": "eslint src/",
54
- "playground": "vite playground",
55
- "playground:build": "vite build playground"
56
- },
57
40
  "dependencies": {
58
- "@gr33n-ai/agent-sdk-client": "workspace:*"
41
+ "@gr33n-ai/agent-sdk-client": "0.1.0"
59
42
  },
60
43
  "peerDependencies": {
61
44
  "react": ">=18.0.0",
@@ -81,5 +64,17 @@
81
64
  "vite": "^6.0.0",
82
65
  "vitest": "^2.0.0"
83
66
  },
84
- "sideEffects": false
85
- }
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
+ }
80
+ }