@vaia-lab/sdk 0.3.0 → 0.4.0

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,12 +1,17 @@
1
1
  {
2
2
  "name": "@vaia-lab/sdk",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "VAIA SDK — platform integration for Gandia-7 and Handeia developers",
5
5
  "author": "VAIA <hello@vaia.dev>",
6
6
  "license": "MIT",
7
- "repository": { "type": "git", "url": "git+https://github.com/diegoramirez772/vaia-sdk.git" },
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/diegoramirez772/vaia-sdk.git"
10
+ },
8
11
  "homepage": "https://github.com/diegoramirez772/vaia-sdk#readme",
9
- "bugs": { "url": "https://github.com/diegoramirez772/vaia-sdk/issues" },
12
+ "bugs": {
13
+ "url": "https://github.com/diegoramirez772/vaia-sdk/issues"
14
+ },
10
15
  "type": "module",
11
16
  "main": "./dist/index.cjs",
12
17
  "module": "./dist/index.js",
@@ -21,6 +26,16 @@
21
26
  "types": "./dist/index.d.cts",
22
27
  "default": "./dist/index.cjs"
23
28
  }
29
+ },
30
+ "./react": {
31
+ "import": {
32
+ "types": "./dist/react/index.d.ts",
33
+ "default": "./dist/react/index.js"
34
+ },
35
+ "require": {
36
+ "types": "./dist/react/index.d.cts",
37
+ "default": "./dist/react/index.cjs"
38
+ }
24
39
  }
25
40
  },
26
41
  "bin": {
@@ -57,7 +72,27 @@
57
72
  ],
58
73
  "devDependencies": {
59
74
  "@types/node": "^26.0.1",
75
+ "@types/react": "^19.2.18",
76
+ "lucide-react": "^1.28.0",
77
+ "motion": "^12.43.0",
78
+ "react": "^19.2.8",
60
79
  "tsup": "^8.0.0",
61
80
  "typescript": "^5.4.0"
81
+ },
82
+ "peerDependencies": {
83
+ "lucide-react": ">=0.400.0",
84
+ "motion": ">=11.0.0",
85
+ "react": ">=18.0.0"
86
+ },
87
+ "peerDependenciesMeta": {
88
+ "react": {
89
+ "optional": true
90
+ },
91
+ "motion": {
92
+ "optional": true
93
+ },
94
+ "lucide-react": {
95
+ "optional": true
96
+ }
62
97
  }
63
98
  }