@thefittingroom/shop-ui 5.0.23 → 5.0.25
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/README.md +18 -1
- package/dist/index.js +1209 -383
- package/package.json +19 -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.25",
|
|
4
4
|
"description": "the fitting room UI library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,9 +17,17 @@
|
|
|
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 tests playwright.config.ts",
|
|
26
|
+
"format:check": "prettier --check src tests playwright.config.ts",
|
|
27
|
+
"test": "npm run test:e2e",
|
|
28
|
+
"test:e2e": "playwright test",
|
|
29
|
+
"test:e2e:debug": "PWDEBUG=1 playwright test",
|
|
30
|
+
"test:e2e:ui": "playwright test --ui"
|
|
23
31
|
},
|
|
24
32
|
"engines": {
|
|
25
33
|
"node": ">=22"
|
|
@@ -28,13 +36,21 @@
|
|
|
28
36
|
"access": "public"
|
|
29
37
|
},
|
|
30
38
|
"devDependencies": {
|
|
39
|
+
"@eslint/js": "^9.39.4",
|
|
40
|
+
"@playwright/test": "^1.60.0",
|
|
31
41
|
"@types/react": "^19.2.7",
|
|
32
42
|
"@types/react-dom": "^19.2.3",
|
|
33
43
|
"@types/react-modal": "^3.16.3",
|
|
34
44
|
"@vitejs/plugin-react": "^5.1.2",
|
|
45
|
+
"eslint": "^9.39.4",
|
|
46
|
+
"eslint-config-prettier": "^9.1.2",
|
|
47
|
+
"eslint-plugin-react": "^7.37.5",
|
|
48
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
49
|
+
"globals": "^17.6.0",
|
|
35
50
|
"prettier": "^3.6.2",
|
|
36
51
|
"serve": "^14.2.5",
|
|
37
52
|
"typescript": "^5.9.3",
|
|
53
|
+
"typescript-eslint": "^8.59.4",
|
|
38
54
|
"vite": "^7.3.0",
|
|
39
55
|
"vite-plugin-svgr": "^4.5.0"
|
|
40
56
|
},
|