@thefittingroom/shop-ui 4.3.7 → 5.0.2

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.
Files changed (3) hide show
  1. package/dist/index.js +40547 -20349
  2. package/package.json +24 -15
  3. package/dist/index.umd.cjs +0 -22331
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thefittingroom/shop-ui",
3
- "version": "4.3.7",
3
+ "version": "5.0.2",
4
4
  "description": "the fitting room UI library",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -8,29 +8,38 @@
8
8
  "dist"
9
9
  ],
10
10
  "scripts": {
11
- "clean": "rm -rf dist",
12
- "clean:all": "rm -rf dist build",
13
- "build:prod": "npm run clean && vite build --mode production",
14
- "build:dev": "npm run clean && vite build --mode development",
15
- "dev": "vite --mode development",
16
- "watch:prod": "vite build --mode production --watch",
17
- "watch:dev": "vite build --mode development --watch",
18
- "serve": "vite preview",
19
- "prune": "ts-prune"
11
+ "clean": "rm -rf dist build",
12
+ "build": "npm run clean && vite build --mode production",
13
+ "watch": "vite build --mode production --watch",
14
+ "serve": "serve . -p 5173 --cors",
15
+ "check": "tsc --noEmit",
16
+ "manual-release": "run() { npm run check && npm run build && npm version $1 && git push && git push --tags && npm run build && echo 'Now run npm publish' ; }; run ${1:-patch}"
20
17
  },
21
18
  "engines": {
22
19
  "node": ">=20"
23
20
  },
24
21
  "devDependencies": {
25
- "@biomejs/biome": "2.3.5",
26
- "@trivago/prettier-plugin-sort-imports": "^6.0.0",
22
+ "@types/react": "^19.2.7",
23
+ "@types/react-dom": "^19.2.3",
24
+ "@types/react-modal": "^3.16.3",
25
+ "@vitejs/plugin-react": "^5.1.2",
27
26
  "prettier": "^3.6.2",
28
- "ts-prune": "^0.10.3",
27
+ "serve": "^14.2.5",
29
28
  "typescript": "^5.9.3",
30
- "vite": "^7.2.2"
29
+ "vite": "^7.3.0",
30
+ "vite-plugin-svgr": "^4.5.0"
31
31
  },
32
32
  "dependencies": {
33
+ "@emotion/babel-plugin": "^11.13.5",
34
+ "@emotion/react": "^11.14.0",
35
+ "bowser": "^2.13.1",
33
36
  "dayjs": "^1.11.19",
34
- "firebase": "^12.5.0"
37
+ "firebase": "^12.5.0",
38
+ "i18next": "^25.7.3",
39
+ "react": "^19.2.3",
40
+ "react-dom": "^19.2.3",
41
+ "react-i18next": "^16.5.0",
42
+ "react-modal": "^3.16.3",
43
+ "zustand": "^5.0.9"
35
44
  }
36
45
  }