@gr33n-ai/jade-sdk-rn-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 +16 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gr33n-ai/jade-sdk-rn-client",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "React Native client for Jade AI - generate images, videos, and audio on mobile",
5
5
  "license": "MIT",
6
6
  "author": "gr33n.ai",
@@ -39,9 +39,21 @@
39
39
  "files": [
40
40
  "dist"
41
41
  ],
42
+ "scripts": {
43
+ "build": "tsup",
44
+ "build:deps": "pnpm --filter @gr33n-ai/agent-sdk-client build && pnpm --filter @gr33n-ai/jade-sdk-client build",
45
+ "build:all": "pnpm run build:deps && pnpm run build",
46
+ "dev": "tsup --watch",
47
+ "typecheck": "tsc --noEmit",
48
+ "lint": "eslint src/",
49
+ "test": "jest",
50
+ "playground": "cd playground && npx expo start",
51
+ "playground:ios": "cd playground && npx expo start --ios",
52
+ "playground:android": "cd playground && npx expo start --android"
53
+ },
42
54
  "dependencies": {
43
- "react-native-sse": "^1.2.1",
44
- "@gr33n-ai/jade-sdk-client": "0.1.2"
55
+ "@gr33n-ai/jade-sdk-client": "workspace:*",
56
+ "react-native-sse": "^1.2.1"
45
57
  },
46
58
  "peerDependencies": {
47
59
  "react": ">=18.0.0",
@@ -58,17 +70,5 @@
58
70
  "tsup": "^8.0.0",
59
71
  "typescript": "^5"
60
72
  },
61
- "sideEffects": false,
62
- "scripts": {
63
- "build": "tsup",
64
- "build:deps": "pnpm --filter @gr33n-ai/agent-sdk-client build && pnpm --filter @gr33n-ai/jade-sdk-client build",
65
- "build:all": "pnpm run build:deps && pnpm run build",
66
- "dev": "tsup --watch",
67
- "typecheck": "tsc --noEmit",
68
- "lint": "eslint src/",
69
- "test": "jest",
70
- "playground": "cd playground && npx expo start",
71
- "playground:ios": "cd playground && npx expo start --ios",
72
- "playground:android": "cd playground && npx expo start --android"
73
- }
73
+ "sideEffects": false
74
74
  }