@aaravpos/appointment-barber-booking 1.0.0
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/LICENSE +21 -0
- package/README.md +100 -0
- package/dist/components/AppointmentBookingPlugin.d.ts +3 -0
- package/dist/components/BookingPluginContainer.d.ts +3 -0
- package/dist/components/common/Breadcrumb.d.ts +1 -0
- package/dist/components/common/CalendarOverlay.d.ts +7 -0
- package/dist/components/common/ChooseYourOutlet.d.ts +7 -0
- package/dist/components/common/MainLayout.d.ts +2 -0
- package/dist/components/common/ProfessionalSkeletonCard.d.ts +2 -0
- package/dist/components/common/ServiceSkeleton.d.ts +2 -0
- package/dist/components/common/Spinner.d.ts +2 -0
- package/dist/components/modals/ConsentModal.d.ts +3 -0
- package/dist/components/modals/PaymentModal.d.ts +17 -0
- package/dist/components/sidebar/Sidebar.d.ts +22 -0
- package/dist/components/steps/ConfirmPage.d.ts +2 -0
- package/dist/components/steps/DetailsPage.d.ts +2 -0
- package/dist/components/steps/ProfessionalServicePage.d.ts +1 -0
- package/dist/components/steps/ServiceProfessionalPage.d.ts +1 -0
- package/dist/components/steps/SuccessPage.d.ts +2 -0
- package/dist/components/steps/TimePage.d.ts +2 -0
- package/dist/components/steps/index.d.ts +2 -0
- package/dist/index.cjs +39 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +19232 -0
- package/dist/styles.css +3850 -0
- package/package.json +81 -0
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aaravpos/appointment-barber-booking",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A React component library built with Tailwind CSS v4 and TypeScript",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"packageManager": "pnpm@10.33.0",
|
|
7
|
+
"main": "./dist/index.cjs",
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"require": "./dist/index.cjs"
|
|
15
|
+
},
|
|
16
|
+
"./styles": "./dist/styles.css"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "vite",
|
|
23
|
+
"build": "tsc -p tsconfig.json --noEmit && vite build",
|
|
24
|
+
"build:css": "pnpm dlx @tailwindcss/cli -i src/styles.css -o dist/styles.css",
|
|
25
|
+
"build:all": "pnpm run build && pnpm run build:css",
|
|
26
|
+
"preview": "vite preview",
|
|
27
|
+
"lint": "tsc -p tsconfig.json --noEmit",
|
|
28
|
+
"prepublishOnly": "pnpm run build:all",
|
|
29
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"react",
|
|
33
|
+
"appointment",
|
|
34
|
+
"tailwindcss",
|
|
35
|
+
"typescript",
|
|
36
|
+
"plugin",
|
|
37
|
+
"booking"
|
|
38
|
+
],
|
|
39
|
+
"author": "Aaravpos",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@tailwindcss/vite": "^4.2.4",
|
|
46
|
+
"@types/lodash": "4.17.24",
|
|
47
|
+
"@types/luxon": "3.7.1",
|
|
48
|
+
"@types/node": "25.6.0",
|
|
49
|
+
"@types/react": "^19.2.14",
|
|
50
|
+
"@types/react-dom": "^19.2.3",
|
|
51
|
+
"@types/react-signature-canvas": "1.0.7",
|
|
52
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
53
|
+
"esbuild": "0.28.0",
|
|
54
|
+
"react": "^19.2.5",
|
|
55
|
+
"react-dom": "^19.2.5",
|
|
56
|
+
"tailwindcss": "^4.2.4",
|
|
57
|
+
"typescript": "^6.0.3",
|
|
58
|
+
"vite": "^8.0.10",
|
|
59
|
+
"vite-plugin-dts": "^5.0.0"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
63
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@reduxjs/toolkit": "2.11.2",
|
|
67
|
+
"@tailwindcss/postcss": "4.2.4",
|
|
68
|
+
"libphonenumber-js": "1.13.1",
|
|
69
|
+
"lodash": "4.18.1",
|
|
70
|
+
"lucide-react": "1.14.0",
|
|
71
|
+
"luxon": "3.7.2",
|
|
72
|
+
"postcss": "8.5.14",
|
|
73
|
+
"react-hook-form": "7.75.0",
|
|
74
|
+
"react-phone-number-input": "3.4.16",
|
|
75
|
+
"react-redux": "9.2.0",
|
|
76
|
+
"react-router-dom": "7.15.0",
|
|
77
|
+
"react-signature-canvas": "1.1.0-alpha.2",
|
|
78
|
+
"react-toastify": "11.1.0",
|
|
79
|
+
"redux-persist": "6.0.0"
|
|
80
|
+
}
|
|
81
|
+
}
|