@oliasoft-open-source/react-ui-library 5.13.0 → 5.13.1-beta-2

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 +9 -27
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oliasoft-open-source/react-ui-library",
3
- "version": "5.13.0",
3
+ "version": "5.13.1-beta-2",
4
4
  "description": "Reusable UI components for React projects",
5
5
  "homepage": "https://oliasoft-open-source.gitlab.io/react-ui-library",
6
6
  "bugs": {
@@ -29,7 +29,9 @@
29
29
  "dist/**/*"
30
30
  ],
31
31
  "lint-staged": {
32
- "*.{js,jsx,ts,tsx}": "eslint --cache --fix",
32
+ "*.{js,jsx,ts,tsx}": [
33
+ "oxlint --fix"
34
+ ],
33
35
  "*.{js,jsx,json,css,less,ts,tsx}": [
34
36
  "prettier --write"
35
37
  ]
@@ -72,10 +74,7 @@
72
74
  "@dnd-kit/core": "^6.3.1",
73
75
  "@dnd-kit/sortable": "^8.0.0",
74
76
  "@dnd-kit/utilities": "^3.2.2",
75
- "@eslint/eslintrc": "^3.3.0",
76
- "@eslint/js": "^9.21.0",
77
77
  "@mdx-js/react": "^3",
78
- "@oliasoft-open-source/eslint-config-oliasoft": "^1.3.1",
79
78
  "@oliasoft-open-source/units": "^4.5.3",
80
79
  "@storybook/addon-docs": "^10.2.8",
81
80
  "@storybook/addon-links": "^10.2.8",
@@ -92,8 +91,6 @@
92
91
  "@types/react-redux": "^7.1.34",
93
92
  "@types/react-transition-group": "^4.4.12",
94
93
  "@types/seamless-immutable": "^7.1.19",
95
- "@typescript-eslint/eslint-plugin": "^8.26.0",
96
- "@typescript-eslint/parser": "^8.26.0",
97
94
  "@vitejs/plugin-react": "^5.0.1",
98
95
  "@vitest/coverage-c8": "^0.33.0",
99
96
  "@vitest/coverage-istanbul": "^3.0.7",
@@ -101,18 +98,6 @@
101
98
  "ajv-errors": "^3.0.0",
102
99
  "ajv-keywords": "^5.1.0",
103
100
  "es-toolkit": "^1.43.0",
104
- "eslint": "^9.21.0",
105
- "eslint-config-airbnb": "^19.0.4",
106
- "eslint-config-prettier": "^10.0.2",
107
- "eslint-import-resolver-alias": "^1.1.2",
108
- "eslint-import-resolver-typescript": "^3.8.3",
109
- "eslint-plugin-import": "^2.31.0",
110
- "eslint-plugin-jsx-a11y": "^6.10.2",
111
- "eslint-plugin-react": "^7.37.4",
112
- "eslint-plugin-react-hooks": "^5.2.0",
113
- "eslint-plugin-storybook": "^10.2.8",
114
- "eslint-plugin-vitest": "^0.5.4",
115
- "eslint-plugin-vitest-globals": "^1.5.0",
116
101
  "http-server": "^14.1.1",
117
102
  "husky": "^9",
118
103
  "immer": "^10",
@@ -120,6 +105,7 @@
120
105
  "jsondiffpatch": "^0.7.3",
121
106
  "less": "^4.2.2",
122
107
  "lint-staged": "^15.4.3",
108
+ "oxlint": "^1.46.0",
123
109
  "playwright": "^1.58.2",
124
110
  "prettier": "3.5.3",
125
111
  "prop-types": "^15",
@@ -151,19 +137,15 @@
151
137
  },
152
138
  "scripts": {
153
139
  "build:package": "tsc && vite build",
154
- "build:docs": "vite build --config vite.config.docs.ts",
155
140
  "build:storybook": "pnpm run build:package && storybook build --quiet --output-dir ./public/storybook",
156
- "build:extras": "pnpm build:docs && pnpm build:storybook",
157
141
  "build:css": "lessc src/style/external.less dist/gui-library.css",
158
- "build": "pnpm build:package && pnpm build:extras",
159
- "dev:docs": "vite --config vite.config.docs.ts",
142
+ "build": "pnpm build:package && pnpm build:storybook",
160
143
  "dev:storybook": "storybook dev -p 6006",
161
- "lint:check": "eslint \"**/*.{js,jsx,ts,tsx}\"",
162
- "lint:fix": "eslint --fix \"**/*.{js,jsx,ts,tsx}\"",
144
+ "lint:check": "oxlint .",
145
+ "lint:fix": "oxlint --fix .",
163
146
  "prettier:check": "prettier --check \"**/*.{js,jsx,json,css,less,ts,tsx}\"",
164
147
  "prettier:fix": "prettier --write \"**/*.{js,jsx,json,css,less,ts,tsx}\"",
165
- "preview:docs": "pnpm build:docs && pnpm run http-server ./public -o -p 9002 -c-1",
166
- "preview:storybook": "pnpm run http-server ./public/storybook -o -p 9003 -c-1",
148
+ "preview:storybook": "pnpm exec http-server ./public/storybook -o -p 9003 -c-1",
167
149
  "test": "pnpm run prettier:check && pnpm run lint:check && pnpm run test:unit",
168
150
  "test:unit": "vitest run",
169
151
  "test:unit:coverage": "vitest run --coverage",