@kwantis-id3/frontend-library 1.5.1-alpha.1-tableHeaderRerenders → 1.5.1
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 +18 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kwantis-id3/frontend-library",
|
|
3
|
-
"version": "1.5.1
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Kwantis frontend components collection",
|
|
5
5
|
"scriptsComments": {
|
|
6
6
|
"storybook": "Starts storybook in development mode",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"test": "Runs tests",
|
|
10
10
|
"test:watch": "Runs tests in watch mode",
|
|
11
11
|
"test:coverage": "Runs tests once and generates coverage report",
|
|
12
|
+
"test:run": "Runs tests once",
|
|
12
13
|
"chromatic": "Runs chromatic tests and deploys to chromatic",
|
|
13
14
|
"build-cleanup": "Removes dist folder (if present)",
|
|
14
15
|
"build": "Removes dist folder and bundles the library",
|
|
@@ -27,6 +28,7 @@
|
|
|
27
28
|
"test": "vitest run",
|
|
28
29
|
"test:watch": "vitest",
|
|
29
30
|
"test:coverage": "vitest run --coverage",
|
|
31
|
+
"test:run": "vitest run",
|
|
30
32
|
"build": "pnpm rollup",
|
|
31
33
|
"bump:patch": "pnpm version patch",
|
|
32
34
|
"bump:minor": "pnpm version minor",
|
|
@@ -34,7 +36,8 @@
|
|
|
34
36
|
"bump:prepatch": "pnpm version prepatch --preid=rc",
|
|
35
37
|
"bump:preminor": "pnpm version preminor --preid=rc",
|
|
36
38
|
"bump:premajor": "pnpm version premajor --preid=rc",
|
|
37
|
-
"bump:rc": "pnpm version prerelease --preid=rc"
|
|
39
|
+
"bump:rc": "pnpm version prerelease --preid=rc",
|
|
40
|
+
"prepare": "husky"
|
|
38
41
|
},
|
|
39
42
|
"author": {
|
|
40
43
|
"name": "kwantis"
|
|
@@ -68,8 +71,11 @@
|
|
|
68
71
|
"eslint-plugin-react": "^7.32.2",
|
|
69
72
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
70
73
|
"eslint-plugin-storybook": "^10.1.10",
|
|
74
|
+
"husky": "^9.1.7",
|
|
71
75
|
"jsdom": "^23.2.0",
|
|
76
|
+
"lint-staged": "^17.0.8",
|
|
72
77
|
"lucide-react": "^0.545.0",
|
|
78
|
+
"prettier": "^3.9.5",
|
|
73
79
|
"prop-types": "15.8.1",
|
|
74
80
|
"rollup": "^3.20.2",
|
|
75
81
|
"rollup-plugin-dts": "^5.3.0",
|
|
@@ -78,6 +84,7 @@
|
|
|
78
84
|
"ts-node": "^10.9.1",
|
|
79
85
|
"tslib": "^2.5.0",
|
|
80
86
|
"typescript": "^5.7.3",
|
|
87
|
+
"vite": "^6.4.1",
|
|
81
88
|
"vitest": "^3.0.5"
|
|
82
89
|
},
|
|
83
90
|
"peerDependencies": {
|
|
@@ -100,6 +107,15 @@
|
|
|
100
107
|
"react-select": "^5.7.3",
|
|
101
108
|
"tinycolor2": "^1.6.0"
|
|
102
109
|
},
|
|
110
|
+
"lint-staged": {
|
|
111
|
+
"*.{js,jsx,ts,tsx}": [
|
|
112
|
+
"prettier --write",
|
|
113
|
+
"eslint --fix"
|
|
114
|
+
],
|
|
115
|
+
"*.{json,css}": [
|
|
116
|
+
"prettier --write"
|
|
117
|
+
]
|
|
118
|
+
},
|
|
103
119
|
"pnpm": {
|
|
104
120
|
"overrides": {
|
|
105
121
|
"@adobe/css-tools@<4.3.1": ">=4.3.1",
|