auxalia-ui-kit 1.7.3 → 1.7.5

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 +25 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auxalia-ui-kit",
3
- "version": "1.7.3",
3
+ "version": "1.7.5",
4
4
  "description": "Auxalia UI Kit is a React component library built on top of Radix UI and Tailwind CSS, designed to provide a comprehensive set of accessible and customizable UI components for building modern web applications.",
5
5
  "license": "ISC",
6
6
  "author": {
@@ -23,6 +23,11 @@
23
23
  "build": "tsup src/index.ts src/tailwind.preset.ts --format esm,cjs --dts --clean --outDir dist && cp src/styles/tokens.css dist/tokens.css && cp src/styles/styles.css dist/styles.css",
24
24
  "storybook": "storybook dev -p 6006",
25
25
  "build-storybook": "storybook build",
26
+ "lint:fix": "eslint . --ext .ts,.tsx --fix",
27
+ "lint": "eslint . --ext .ts,.tsx",
28
+ "format": "prettier --write .",
29
+ "test": "vitest run",
30
+ "test:watch": "vitest",
26
31
  "vercel-build": "npm run build-storybook"
27
32
  },
28
33
  "keywords": [
@@ -93,9 +98,25 @@
93
98
  "@storybook/addon-docs": "^10.3.6",
94
99
  "@storybook/react-vite": "^10.3.6",
95
100
  "@tailwindcss/vite": "^4.2.1",
101
+ "@testing-library/jest-dom": "^6.9.1",
102
+ "@testing-library/dom": "^10.4.1",
103
+ "@testing-library/react": "^13.4.0",
104
+ "@testing-library/user-event": "^14.6.1",
105
+ "@types/jest": "^30.0.0",
96
106
  "@types/react": "^18.3.28",
97
107
  "@types/react-dom": "^18.3.7",
108
+ "@typescript-eslint/eslint-plugin": "^6.10.0",
109
+ "@typescript-eslint/parser": "^6.10.0",
98
110
  "@vitejs/plugin-react": "^5.1.4",
111
+ "eslint": "^8.57.0",
112
+ "eslint-config-prettier": "^9.0.0",
113
+ "eslint-plugin-jsx-a11y": "^6.7.1",
114
+ "eslint-plugin-prettier": "^5.5.5",
115
+ "eslint-plugin-react": "^7.33.2",
116
+ "eslint-plugin-react-hooks": "^4.6.0",
117
+ "eslint-plugin-storybook": "^0.6.12",
118
+ "jsdom": "^22.1.0",
119
+ "prettier": "^3.0.0",
99
120
  "react": "^19.2.4",
100
121
  "react-dom": "^19.2.4",
101
122
  "storybook": "^10.3.6",
@@ -103,6 +124,7 @@
103
124
  "tailwindcss": "^4.2.1",
104
125
  "tsup": "^8.2.4",
105
126
  "typescript": "^5.7.3",
106
- "vite": "^5.4.21"
127
+ "vite": "^5.4.21",
128
+ "vitest": "^3.2.4"
107
129
  }
108
- }
130
+ }