@bigz-app/booking-widget 0.3.8 → 0.3.10

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigz-app/booking-widget",
3
- "version": "0.3.8",
3
+ "version": "0.3.10",
4
4
  "description": "Booking widget for Big Z Booking System @ bigz.app",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -50,9 +50,11 @@
50
50
  "@types/node": "^20.17.47",
51
51
  "@types/react": "^18.2.45",
52
52
  "@types/react-dom": "^18.2.18",
53
+ "eslint": "^9.17.0",
53
54
  "rollup": "^4.9.1",
54
55
  "rollup-plugin-peer-deps-external": "^2.2.4",
55
- "typescript": "^5.3.3"
56
+ "typescript": "^5.3.3",
57
+ "typescript-eslint": "^8.18.2"
56
58
  },
57
59
  "publishConfig": {
58
60
  "access": "public"
@@ -67,10 +69,10 @@
67
69
  "pack:check": "npm pack --dry-run",
68
70
  "link:local": "pnpm link --global",
69
71
  "unlink:local": "pnpm unlink --global",
70
- "lint": "biome lint ./src",
71
- "format": "biome format . --write",
72
- "check": "biome check .",
73
- "check:write": "biome check . --write",
72
+ "lint": "eslint ./src",
73
+ "format": "eslint ./src --fix",
74
+ "check": "eslint ./src",
75
+ "check:write": "eslint ./src --fix",
74
76
  "postbuild": "echo 'Preact build complete.'"
75
77
  }
76
78
  }