@homlista-devs/ui 1.4.0 → 1.5.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,132 +1,131 @@
1
1
  {
2
- "name": "@homlista-devs/ui",
3
- "version": "1.4.0",
4
- "main": "./dist/design-system.cjs.js",
5
- "module": "./dist/design-system.es.js",
6
- "types": "./dist/types/index.d.ts",
7
- "type": "module",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/types/index.d.ts",
11
- "import": "./dist/design-system.es.js",
12
- "require": "./dist/design-system.cjs.js"
13
- },
14
- "./styles.css": "./dist/index.css",
15
- "./styles": "./dist/index.css"
16
- },
17
- "files": [
18
- "dist"
19
- ],
20
- "keywords": [
21
- "react",
22
- "design-system",
23
- "ui-components",
24
- "tailwindcss",
25
- "typescript"
26
- ],
27
- "repository": {
28
- "type": "git",
29
- "url": "https://github.com/Team-HomLista/design_system.git"
30
- },
31
- "scripts": {
32
- "dev": "vite",
33
- "build": "tsc --noEmit && vite build",
34
- "build:lib": "vite build && npm run build:css",
35
- "build:lib:full": "vite build && npm run build:types && npm run build:css",
36
- "build:types": "tsc --project tsconfig.app.json --emitDeclarationOnly --outDir dist/types --skipLibCheck",
37
- "build:css": "postcss ./src/index.css -o ./dist/index.css --config ./postcss.config.js",
38
- "lint": "eslint .",
39
- "preview": "vite preview",
40
- "storybook": "storybook dev -p 6006",
41
- "build-storybook": "storybook build",
42
- "test": "vitest",
43
- "test:ui": "vitest --ui",
44
- "test:coverage": "vitest --coverage",
45
- "test:watch": "vitest --watch",
46
- "test:e2e": "playwright test",
47
- "test:e2e:ui": "playwright test --ui",
48
- "test:accessibility": "vitest --run --reporter=verbose accessibility",
49
- "test:performance": "vitest --run --reporter=verbose performance",
50
- "chromatic": "chromatic --exit-zero-on-changes",
51
- "prepare": "husky install"
52
- },
53
- "dependencies": {
54
- "@radix-ui/react-slot": "^1.2.3",
55
- "class-variance-authority": "^0.7.1",
56
- "clsx": "^2.1.1",
57
- "lucide-react": "^0.547.0",
58
- "tailwind-merge": "^3.3.1",
59
- "tailwindcss-animate": "^1.0.7"
60
- },
61
- "peerDependencies": {
62
- "react": "^18.0.0 || ^19.0.0",
63
- "react-dom": "^18.0.0 || ^19.0.0",
64
- "effector": "^23.0.0",
65
- "effector-react": "^23.0.0"
66
- },
67
- "lint-staged": {
68
- "*.{ts,tsx}": [
69
- "eslint --fix",
70
- "vitest related --run"
71
- ],
72
- "*.{js,jsx,json,css,md}": [
73
- "eslint --fix"
74
- ]
75
- },
76
- "devDependencies": {
77
- "@chromatic-com/storybook": "^4.1.1",
78
- "@commitlint/cli": "^20.1.0",
79
- "@commitlint/config-conventional": "^20.0.0",
80
- "@eslint/js": "^9.36.0",
81
- "@playwright/test": "^1.56.1",
82
- "@semantic-release/changelog": "^6.0.3",
83
- "@semantic-release/git": "^10.0.1",
84
- "@semantic-release/github": "^12.0.1",
85
- "@semantic-release/npm": "^13.1.1",
86
- "@storybook/addon-a11y": "^9.1.13",
87
- "@storybook/addon-docs": "^9.1.13",
88
- "@storybook/addon-onboarding": "^9.1.13",
89
- "@storybook/addon-styling-webpack": "^2.0.0",
90
- "@storybook/addon-themes": "^9.1.13",
91
- "@storybook/blocks": "^8.6.14",
92
- "@storybook/react-vite": "^9.1.13",
93
- "@tailwindcss/aspect-ratio": "^0.4.2",
94
- "@tailwindcss/forms": "^0.5.10",
95
- "@tailwindcss/postcss": "^4.1.16",
96
- "@tailwindcss/typography": "^0.5.19",
97
- "@testing-library/jest-dom": "^6.9.1",
98
- "@testing-library/react": "^16.3.0",
99
- "@testing-library/user-event": "^14.6.1",
100
- "@types/node": "^24.6.0",
101
- "@types/react": "^19.1.16",
102
- "@types/react-dom": "^19.1.9",
103
- "@vitejs/plugin-react": "^5.0.4",
104
- "@vitest/coverage-v8": "^4.0.4",
105
- "@vitest/ui": "^4.0.4",
106
- "autoprefixer": "^10.4.21",
107
- "axe-core": "^4.11.0",
108
- "axe-playwright": "^2.2.2",
109
- "chromatic": "^13.3.2",
110
- "effector": "^23.4.4",
111
- "effector-react": "^23.3.0",
112
- "eslint": "^9.36.0",
113
- "eslint-plugin-react-hooks": "^5.2.0",
114
- "eslint-plugin-react-refresh": "^0.4.22",
115
- "eslint-plugin-storybook": "^9.1.13",
116
- "globals": "^16.4.0",
117
- "husky": "^9.1.7",
118
- "jsdom": "^27.0.1",
119
- "lint-staged": "^16.2.6",
120
- "postcss": "^8.5.6",
121
- "postcss-cli": "^11.0.1",
122
- "react": "^19.1.1",
123
- "react-dom": "^19.1.1",
124
- "semantic-release": "^25.0.1",
125
- "storybook": "^9.1.13",
126
- "tailwindcss": "^4.1.16",
127
- "typescript": "~5.9.3",
128
- "typescript-eslint": "^8.45.0",
129
- "vite": "^7.1.7",
130
- "vitest": "^4.0.2"
131
- }
2
+ "name": "@homlista-devs/ui",
3
+ "version": "1.5.0",
4
+ "main": "./dist/design-system.cjs.js",
5
+ "module": "./dist/design-system.es.js",
6
+ "types": "./dist/types/index.d.ts",
7
+ "type": "module",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/types/index.d.ts",
11
+ "import": "./dist/design-system.es.js",
12
+ "require": "./dist/design-system.cjs.js"
13
+ },
14
+ "./styles.css": "./dist/index.css",
15
+ "./styles": "./dist/index.css"
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "keywords": [
21
+ "react",
22
+ "design-system",
23
+ "ui-components",
24
+ "tailwindcss",
25
+ "typescript"
26
+ ],
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/Team-HomLista/design_system.git"
30
+ },
31
+ "scripts": {
32
+ "dev": "vite",
33
+ "build": "tsc --noEmit && vite build",
34
+ "build:lib": "vite build && npm run build:css",
35
+ "build:lib:full": "vite build && npm run build:types && npm run build:css",
36
+ "build:types": "tsc --project tsconfig.app.json --emitDeclarationOnly --outDir dist/types --skipLibCheck",
37
+ "build:css": "postcss ./src/index.css -o ./dist/index.css --config ./postcss.config.js",
38
+ "lint": "biome check --write .",
39
+ "lint:ci": "biome ci .",
40
+ "format": "biome format --write .",
41
+ "preview": "vite preview",
42
+ "storybook": "storybook dev -p 6006",
43
+ "build-storybook": "storybook build",
44
+ "test": "vitest",
45
+ "test:ui": "vitest --ui",
46
+ "test:coverage": "vitest --coverage",
47
+ "test:watch": "vitest --watch",
48
+ "test:e2e": "playwright test",
49
+ "test:e2e:ui": "playwright test --ui",
50
+ "test:accessibility": "vitest --run --reporter=verbose accessibility",
51
+ "test:performance": "vitest --run --reporter=verbose performance",
52
+ "chromatic": "chromatic --exit-zero-on-changes",
53
+ "prepare": "husky install"
54
+ },
55
+ "dependencies": {
56
+ "@radix-ui/react-slot": "^1.2.3",
57
+ "class-variance-authority": "^0.7.1",
58
+ "clsx": "^2.1.1",
59
+ "lucide-react": "^0.547.0",
60
+ "tailwind-merge": "^3.3.1",
61
+ "tailwindcss-animate": "^1.0.7"
62
+ },
63
+ "peerDependencies": {
64
+ "effector": "^23.0.0",
65
+ "effector-react": "^23.0.0",
66
+ "react": "^18.0.0 || ^19.0.0",
67
+ "react-dom": "^18.0.0 || ^19.0.0"
68
+ },
69
+ "lint-staged": {
70
+ "*.{ts,tsx,js,jsx,json,css,md}": [
71
+ "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
72
+ ],
73
+ "*.{ts,tsx}": [
74
+ "vitest related --run"
75
+ ]
76
+ },
77
+ "devDependencies": {
78
+ "@biomejs/biome": "2.3.14",
79
+ "@chromatic-com/storybook": "^4.1.1",
80
+ "@commitlint/cli": "^20.1.0",
81
+ "@commitlint/config-conventional": "^20.0.0",
82
+ "@playwright/test": "^1.56.1",
83
+ "@semantic-release/changelog": "^6.0.3",
84
+ "@semantic-release/git": "^10.0.1",
85
+ "@semantic-release/github": "^12.0.1",
86
+ "@semantic-release/npm": "^13.1.1",
87
+ "@storybook/addon-a11y": "^9.1.13",
88
+ "@storybook/addon-docs": "^9.1.13",
89
+ "@storybook/addon-onboarding": "^9.1.13",
90
+ "@storybook/addon-styling-webpack": "^2.0.0",
91
+ "@storybook/addon-themes": "^9.1.13",
92
+ "@storybook/blocks": "8.6.14",
93
+ "@storybook/react-vite": "^9.1.13",
94
+ "@tailwindcss/aspect-ratio": "^0.4.2",
95
+ "@tailwindcss/forms": "^0.5.10",
96
+ "@tailwindcss/postcss": "^4.1.16",
97
+ "@tailwindcss/typography": "^0.5.19",
98
+ "@testing-library/jest-dom": "^6.9.1",
99
+ "@testing-library/react": "^16.3.0",
100
+ "@testing-library/user-event": "^14.6.1",
101
+ "@types/node": "^24.6.0",
102
+ "@types/react": "^19.1.16",
103
+ "@types/react-dom": "^19.1.9",
104
+ "@vitejs/plugin-react": "^5.0.4",
105
+ "@vitest/coverage-v8": "^4.0.4",
106
+ "@vitest/ui": "^4.0.4",
107
+ "autoprefixer": "^10.4.21",
108
+ "axe-core": "^4.11.0",
109
+ "axe-playwright": "^2.2.2",
110
+ "chromatic": "^13.3.2",
111
+ "effector": "^23.4.4",
112
+ "effector-react": "^23.3.0",
113
+ "eslint-plugin-react-refresh": "^0.4.22",
114
+ "eslint-plugin-storybook": "^9.1.13",
115
+ "globals": "^16.4.0",
116
+ "husky": "^9.1.7",
117
+ "jsdom": "^27.0.1",
118
+ "lint-staged": "^16.2.6",
119
+ "postcss": "^8.5.6",
120
+ "postcss-cli": "^11.0.1",
121
+ "react": "^19.1.1",
122
+ "react-dom": "^19.1.1",
123
+ "semantic-release": "^25.0.1",
124
+ "storybook": "^9.1.13",
125
+ "tailwindcss": "^4.1.16",
126
+ "typescript": "~5.9.3",
127
+ "typescript-eslint": "^8.45.0",
128
+ "vite": "^7.1.7",
129
+ "vitest": "^4.0.2"
130
+ }
132
131
  }