@chaibuilder/pages 0.16.2 → 0.16.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 +12 -12
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Suraj Air",
4
4
  "license": "Private",
5
5
  "homepage": "https://chaibuilder.com",
6
- "version": "0.16.2",
6
+ "version": "0.16.3",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist"
@@ -56,9 +56,16 @@
56
56
  "require": "./dist/pages.css"
57
57
  }
58
58
  },
59
+ "scripts": {
60
+ "dev": "vite",
61
+ "build": "tsc -b && vite build",
62
+ "lint": "eslint .",
63
+ "preview": "vite preview",
64
+ "test": "vitest"
65
+ },
59
66
  "peerDependencies": {
60
67
  "@chaibuilder/runtime": "2.2.0",
61
- "@chaibuilder/sdk": "3.1.3",
68
+ "@chaibuilder/sdk": "3.1.6",
62
69
  "@types/react": "*",
63
70
  "@types/react-dom": "*",
64
71
  "jotai": "2.14.0",
@@ -75,7 +82,7 @@
75
82
  },
76
83
  "dependencies": {
77
84
  "@chaibuilder/runtime": "2.2.0",
78
- "@chaibuilder/sdk": "3.1.3",
85
+ "@chaibuilder/sdk": "3.1.6",
79
86
  "@mhsdesign/jit-browser-tailwindcss": "^0.4.2",
80
87
  "@radix-ui/react-icons": "^1.3.2",
81
88
  "@supabase/supabase-js": "2.50.3",
@@ -151,12 +158,5 @@
151
158
  "node": ">=21.0.0",
152
159
  "pnpm": ">=8.0.0"
153
160
  },
154
- "engineStrict": true,
155
- "scripts": {
156
- "dev": "vite",
157
- "build": "tsc -b && vite build",
158
- "lint": "eslint .",
159
- "preview": "vite preview",
160
- "test": "vitest"
161
- }
162
- }
161
+ "engineStrict": true
162
+ }