@thefittingroom/shop-ui 5.0.23 → 5.0.24
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.js +913 -353
- package/package.json +14 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thefittingroom/shop-ui",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.24",
|
|
4
4
|
"description": "the fitting room UI library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,9 +17,13 @@
|
|
|
17
17
|
"watch": "vite build --mode production --watch",
|
|
18
18
|
"serve": "serve . -p 5173 --cors",
|
|
19
19
|
"watch-serve": "trap 'kill 0' EXIT; npm run watch & npm run serve & wait",
|
|
20
|
-
"check": "tsc --noEmit",
|
|
20
|
+
"check": "tsc --noEmit && npm run lint && npm run format:check",
|
|
21
21
|
"gen-types": "sh scripts/gen-types.sh",
|
|
22
|
-
"promote-latest": "sh scripts/promote-latest.sh"
|
|
22
|
+
"promote-latest": "sh scripts/promote-latest.sh",
|
|
23
|
+
"lint": "eslint .",
|
|
24
|
+
"lint:fix": "eslint . --fix",
|
|
25
|
+
"format": "prettier --write src",
|
|
26
|
+
"format:check": "prettier --check src"
|
|
23
27
|
},
|
|
24
28
|
"engines": {
|
|
25
29
|
"node": ">=22"
|
|
@@ -28,13 +32,20 @@
|
|
|
28
32
|
"access": "public"
|
|
29
33
|
},
|
|
30
34
|
"devDependencies": {
|
|
35
|
+
"@eslint/js": "^9.39.4",
|
|
31
36
|
"@types/react": "^19.2.7",
|
|
32
37
|
"@types/react-dom": "^19.2.3",
|
|
33
38
|
"@types/react-modal": "^3.16.3",
|
|
34
39
|
"@vitejs/plugin-react": "^5.1.2",
|
|
40
|
+
"eslint": "^9.39.4",
|
|
41
|
+
"eslint-config-prettier": "^9.1.2",
|
|
42
|
+
"eslint-plugin-react": "^7.37.5",
|
|
43
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
44
|
+
"globals": "^17.6.0",
|
|
35
45
|
"prettier": "^3.6.2",
|
|
36
46
|
"serve": "^14.2.5",
|
|
37
47
|
"typescript": "^5.9.3",
|
|
48
|
+
"typescript-eslint": "^8.59.4",
|
|
38
49
|
"vite": "^7.3.0",
|
|
39
50
|
"vite-plugin-svgr": "^4.5.0"
|
|
40
51
|
},
|