@bigz-app/booking-widget 0.3.6 → 0.3.8

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,71 +1,76 @@
1
1
  {
2
- "name": "@bigz-app/booking-widget",
3
- "version": "0.3.6",
4
- "description": "Booking widget for Big Z Booking System @ bigz.app",
5
- "type": "module",
6
- "main": "dist/index.cjs",
7
- "module": "dist/index.esm.js",
8
- "types": "dist/index.d.ts",
9
- "files": ["dist", "README.md"],
10
- "exports": {
11
- ".": {
12
- "import": "./dist/index.esm.js",
13
- "require": "./dist/index.cjs",
14
- "types": "./dist/index.d.ts"
15
- },
16
- "./umd": "./dist/index.umd.js",
17
- "./package.json": "./package.json"
18
- },
19
- "unpkg": "dist/index.umd.js",
20
- "jsdelivr": "dist/index.umd.js",
21
- "keywords": ["bigz", "booking-widget"],
22
- "author": "99 Power",
23
- "license": "UNLICENSED",
24
- "scripts": {
25
- "dev": "rollup -c -w",
26
- "build": "rollup -c",
27
- "build:types": "tsc --emitDeclarationOnly",
28
- "clean": "rm -rf dist",
29
- "rebuild": "npm run clean && npm run build",
30
- "prepublishOnly": "npm run rebuild",
31
- "test": "echo 'Add test script here'",
32
- "pack:check": "npm pack --dry-run",
33
- "link:local": "pnpm link --global",
34
- "unlink:local": "pnpm unlink --global",
35
- "lint": "biome lint .",
36
- "format": "biome format . --write",
37
- "check": "biome check .",
38
- "check:write": "biome check . --write",
39
- "postbuild": "echo 'Preact build complete.'"
40
- },
41
- "peerDependencies": {
42
- "react": "^18.0.0 || ^19.0.0",
43
- "react-dom": "^18.0.0 || ^19.0.0"
44
- },
45
- "dependencies": {
46
- "@hookform/resolvers": "^3.3.2",
47
- "@stripe/react-stripe-js": "^3.7.0",
48
- "@stripe/stripe-js": "^4.9.0",
49
- "@tiptap/starter-kit": "3.0.7",
50
- "markdown-to-jsx": "^7.7.12",
51
- "preact": "^10.26.9",
52
- "react-hook-form": "^7.48.2",
53
- "zod": "^3.22.4"
54
- },
55
- "devDependencies": {
56
- "@rollup/plugin-alias": "^5.1.1",
57
- "@rollup/plugin-commonjs": "^25.0.7",
58
- "@rollup/plugin-node-resolve": "^15.2.3",
59
- "@rollup/plugin-replace": "^6.0.2",
60
- "@rollup/plugin-typescript": "^11.1.5",
61
- "@types/node": "^20.17.47",
62
- "@types/react": "^18.2.45",
63
- "@types/react-dom": "^18.2.18",
64
- "rollup": "^4.9.1",
65
- "rollup-plugin-peer-deps-external": "^2.2.4",
66
- "typescript": "^5.3.3"
67
- },
68
- "publishConfig": {
69
- "access": "public"
70
- }
71
- }
2
+ "name": "@bigz-app/booking-widget",
3
+ "version": "0.3.8",
4
+ "description": "Booking widget for Big Z Booking System @ bigz.app",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.esm.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "exports": {
14
+ ".": {
15
+ "import": "./dist/index.esm.js",
16
+ "require": "./dist/index.cjs",
17
+ "types": "./dist/index.d.ts"
18
+ },
19
+ "./umd": "./dist/index.umd.js",
20
+ "./package.json": "./package.json"
21
+ },
22
+ "unpkg": "dist/index.umd.js",
23
+ "jsdelivr": "dist/index.umd.js",
24
+ "keywords": [
25
+ "bigz",
26
+ "booking-widget"
27
+ ],
28
+ "author": "99 Power",
29
+ "license": "UNLICENSED",
30
+ "peerDependencies": {
31
+ "react": "^18.0.0 || ^19.0.0",
32
+ "react-dom": "^18.0.0 || ^19.0.0"
33
+ },
34
+ "dependencies": {
35
+ "@hookform/resolvers": "^3.3.2",
36
+ "@stripe/react-stripe-js": "^3.7.0",
37
+ "@stripe/stripe-js": "^4.9.0",
38
+ "@tiptap/starter-kit": "3.0.7",
39
+ "markdown-to-jsx": "^7.7.12",
40
+ "preact": "^10.26.9",
41
+ "react-hook-form": "^7.48.2",
42
+ "zod": "^3.22.4"
43
+ },
44
+ "devDependencies": {
45
+ "@rollup/plugin-alias": "^5.1.1",
46
+ "@rollup/plugin-commonjs": "^25.0.7",
47
+ "@rollup/plugin-node-resolve": "^15.2.3",
48
+ "@rollup/plugin-replace": "^6.0.2",
49
+ "@rollup/plugin-typescript": "^11.1.5",
50
+ "@types/node": "^20.17.47",
51
+ "@types/react": "^18.2.45",
52
+ "@types/react-dom": "^18.2.18",
53
+ "rollup": "^4.9.1",
54
+ "rollup-plugin-peer-deps-external": "^2.2.4",
55
+ "typescript": "^5.3.3"
56
+ },
57
+ "publishConfig": {
58
+ "access": "public"
59
+ },
60
+ "scripts": {
61
+ "dev": "rollup -c -w",
62
+ "build": "rollup -c",
63
+ "build:types": "tsc --emitDeclarationOnly",
64
+ "clean": "rm -rf dist",
65
+ "rebuild": "npm run clean && npm run build",
66
+ "test": "echo 'Add test script here'",
67
+ "pack:check": "npm pack --dry-run",
68
+ "link:local": "pnpm link --global",
69
+ "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",
74
+ "postbuild": "echo 'Preact build complete.'"
75
+ }
76
+ }