@post-pioneer/ui-kit 0.1.73 → 0.1.74
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/dist/index.css +1 -1
- package/dist/ui-kit-postpioneer.es.js +2963 -2866
- package/dist/ui-kit-postpioneer.umd.js +7 -7
- package/package.json +19 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@post-pioneer/ui-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.74",
|
|
4
4
|
"description": "UI Kit for Post Pioneer applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/ui-kit-postpioneer.umd.js",
|
|
@@ -19,16 +19,20 @@
|
|
|
19
19
|
"./index.css": "./dist/index.css"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
|
+
"prepare": "husky",
|
|
22
23
|
"dev": "vite",
|
|
23
24
|
"build": "tsc && vite build",
|
|
24
|
-
"lint": "eslint .",
|
|
25
25
|
"preview": "vite preview",
|
|
26
26
|
"storybook": "storybook dev -p 6006",
|
|
27
27
|
"build-storybook": "storybook build",
|
|
28
28
|
"test": "jest",
|
|
29
29
|
"test:watch": "jest --watch",
|
|
30
30
|
"test:coverage": "jest --coverage",
|
|
31
|
-
"prepublishOnly": "npm run build"
|
|
31
|
+
"prepublishOnly": "npm run build",
|
|
32
|
+
"lint": "eslint . --ext .ts,.tsx",
|
|
33
|
+
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
|
34
|
+
"format": "prettier --write \"src/**/*.{ts,tsx,scss,js,jsx,json,md}\"",
|
|
35
|
+
"lint-staged": "lint-staged"
|
|
32
36
|
},
|
|
33
37
|
"keywords": [
|
|
34
38
|
"react",
|
|
@@ -89,17 +93,29 @@
|
|
|
89
93
|
"@vitejs/plugin-react": "^4.7.0",
|
|
90
94
|
"classnames": "^2.5.1",
|
|
91
95
|
"eslint": "^9.33.0",
|
|
96
|
+
"eslint-config-prettier": "^10.1.8",
|
|
97
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
98
|
+
"eslint-plugin-react": "^7.37.5",
|
|
92
99
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
93
100
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
94
101
|
"eslint-plugin-storybook": "^0.8.0",
|
|
95
102
|
"globals": "^16.3.0",
|
|
103
|
+
"husky": "^9.1.7",
|
|
96
104
|
"jest": "^30.0.5",
|
|
97
105
|
"jest-environment-jsdom": "^30.0.5",
|
|
98
106
|
"jsdom": "^26.1.0",
|
|
107
|
+
"lint-staged": "^16.2.6",
|
|
108
|
+
"prettier": "^3.6.2",
|
|
99
109
|
"storybook": "^9.1.4",
|
|
100
110
|
"tslib": "^2.8.1",
|
|
101
111
|
"typescript": "~5.8.3",
|
|
102
112
|
"typescript-eslint": "^8.39.1",
|
|
103
113
|
"vite": "7.1.5"
|
|
114
|
+
},
|
|
115
|
+
"lint-staged": {
|
|
116
|
+
"*.{ts,tsx,js,jsx,scss,md,json}": [
|
|
117
|
+
"prettier --write",
|
|
118
|
+
"eslint --fix"
|
|
119
|
+
]
|
|
104
120
|
}
|
|
105
121
|
}
|