@oliasoft-open-source/react-ui-library 6.14.0-beta-8 → 6.14.0-beta-9

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,20 +1,17 @@
1
1
  {
2
2
  "name": "@oliasoft-open-source/react-ui-library",
3
- "version": "6.14.0-beta-8",
3
+ "version": "6.14.0-beta-9",
4
4
  "description": "Reusable UI components for React projects",
5
5
  "homepage": "https://oliasoft-open-source.gitlab.io/react-ui-library",
6
6
  "bugs": {
7
7
  "url": "https://gitlab.com/oliasoft-open-source/react-ui-library/issues"
8
8
  },
9
- "license": "MIT",
10
- "author": "Oliasoft AS and contributors",
11
9
  "repository": {
12
10
  "type": "git",
13
11
  "url": "git+https://gitlab.com/oliasoft-open-source/react-ui-library.git"
14
12
  },
15
- "files": [
16
- "dist/**/*"
17
- ],
13
+ "license": "MIT",
14
+ "author": "Oliasoft AS and contributors",
18
15
  "type": "module",
19
16
  "main": "./dist/index.js",
20
17
  "module": "./dist/index.js",
@@ -28,6 +25,29 @@
28
25
  "./global.css": "./dist/global.css",
29
26
  "./dist/global.css": "./dist/global.css"
30
27
  },
28
+ "files": [
29
+ "dist/**/*"
30
+ ],
31
+ "devEngines": {
32
+ "packageManager": {
33
+ "name": "pnpm",
34
+ "version": "11.3.0",
35
+ "onFail": "download"
36
+ },
37
+ "runtime": {
38
+ "name": "node",
39
+ "version": "26.3.0",
40
+ "onFail": "download"
41
+ }
42
+ },
43
+ "lint-staged": {
44
+ "*.{js,jsx,ts,tsx}": [
45
+ "oxlint --fix"
46
+ ],
47
+ "*.{js,jsx,json,css,less,ts,tsx}": [
48
+ "prettier --write"
49
+ ]
50
+ },
31
51
  "dependencies": {
32
52
  "@floating-ui/react": "^0.27.19",
33
53
  "@fontsource/noto-sans": "^5.2.5",
@@ -86,9 +106,9 @@
86
106
  "jsondiffpatch": "^0.7.6",
87
107
  "less": "^4.6.4",
88
108
  "lint-staged": "^17.0.5",
89
- "oxfmt": "^0.60.0",
90
109
  "oxlint": "^1.66.0",
91
110
  "playwright": "^1.60.0",
111
+ "prettier": "3.8.3",
92
112
  "react": "^19.2.6",
93
113
  "react-dom": "^19.2.6",
94
114
  "storybook": "^10.4.0",
@@ -108,24 +128,6 @@
108
128
  "react": "^18 || ^19",
109
129
  "react-dom": "^18 || ^19"
110
130
  },
111
- "lint-staged": {
112
- "*": [
113
- "oxlint --fix --no-error-on-unmatched-pattern",
114
- "oxfmt"
115
- ]
116
- },
117
- "devEngines": {
118
- "packageManager": {
119
- "name": "pnpm",
120
- "version": "11.3.0",
121
- "onFail": "download"
122
- },
123
- "runtime": {
124
- "name": "node",
125
- "version": "26.3.0",
126
- "onFail": "download"
127
- }
128
- },
129
131
  "scripts": {
130
132
  "build:package": "tsc && vite build",
131
133
  "build:storybook": "pnpm run build:package && storybook build --quiet --output-dir ./public/storybook",
@@ -134,10 +136,10 @@
134
136
  "dev:storybook": "storybook dev -p 6006",
135
137
  "lint:check": "oxlint .",
136
138
  "lint:fix": "oxlint --fix .",
137
- "format:check": "oxfmt --check",
138
- "format:fix": "oxfmt",
139
+ "prettier:check": "prettier --check \"**/*.{js,jsx,json,css,less,ts,tsx}\"",
140
+ "prettier:fix": "prettier --write \"**/*.{js,jsx,json,css,less,ts,tsx}\"",
139
141
  "preview:storybook": "pnpm exec http-server ./public/storybook -o -p 9003 -c-1",
140
- "test": "pnpm run format:check && pnpm run test:unit",
142
+ "test": "pnpm run prettier:check && pnpm run test:unit",
141
143
  "test:storybook": "vitest run --config vitest.storybook.config.ts",
142
144
  "test:unit": "vitest run",
143
145
  "test:unit:coverage": "vitest run --coverage"