@craftzbay/ui 0.2.6 → 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.
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@craftzbay/ui",
3
- "version": "0.2.6",
3
+ "version": "0.4.0",
4
4
  "description": "Refined-minimal Tailwind v4 + React design system — 40+ accessible primitives and ready-made page patterns.",
5
5
  "license": "MIT",
6
6
  "author": "craftzbay",
@@ -77,20 +77,28 @@
77
77
  "vaul": "^1.1.2"
78
78
  },
79
79
  "devDependencies": {
80
+ "@changesets/cli": "^2.31.0",
80
81
  "@storybook/addon-a11y": "^10.4.0",
81
82
  "@storybook/addon-docs": "^10.4.0",
82
83
  "@storybook/addon-themes": "^10.4.0",
83
84
  "@storybook/react-vite": "^10.4.0",
84
85
  "@tailwindcss/postcss": "^4.0.0",
85
86
  "@tailwindcss/vite": "^4.0.0",
87
+ "@testing-library/jest-dom": "^6.9.1",
88
+ "@testing-library/react": "^16.3.2",
89
+ "@testing-library/user-event": "^14.6.1",
90
+ "@types/jest-axe": "^3.5.9",
86
91
  "@types/node": "^22.10.0",
87
92
  "@types/react": "^18.3.12",
88
93
  "@types/react-dom": "^18.3.1",
89
94
  "@vitejs/plugin-react": "^4.3.4",
95
+ "@vitest/ui": "^4.1.6",
90
96
  "autoprefixer": "^10.4.20",
91
97
  "eslint": "^9.16.0",
92
98
  "eslint-plugin-react": "^7.37.2",
93
99
  "eslint-plugin-react-hooks": "^5.0.0",
100
+ "jest-axe": "^10.0.0",
101
+ "jsdom": "^29.1.1",
94
102
  "postcss": "^8.4.49",
95
103
  "prettier": "^3.4.2",
96
104
  "prettier-plugin-tailwindcss": "^0.6.9",
@@ -98,9 +106,11 @@
98
106
  "react-dom": "^18.3.1",
99
107
  "storybook": "^10.4.0",
100
108
  "tailwindcss": "^4.0.0",
109
+ "tw-animate-css": "^1.4.0",
101
110
  "typescript": "^5.7.2",
102
111
  "vite": "^6.0.3",
103
- "vite-plugin-dts": "^5.0.0"
112
+ "vite-plugin-dts": "^5.0.0",
113
+ "vitest": "^4.1.6"
104
114
  },
105
115
  "peerDependencies": {
106
116
  "react": ">=18",
@@ -114,6 +124,11 @@
114
124
  "lint": "eslint . --ext .ts,.tsx",
115
125
  "format": "prettier --write .",
116
126
  "storybook": "storybook dev -p 6006",
117
- "build-storybook": "storybook build"
127
+ "build-storybook": "storybook build",
128
+ "test": "vitest run",
129
+ "test:watch": "vitest",
130
+ "changeset": "changeset",
131
+ "changeset:version": "changeset version",
132
+ "changeset:release": "pnpm build:lib && changeset publish"
118
133
  }
119
134
  }