booking-ui
Version:
React booking widget component for ZvenBook booking system
71 lines (70 loc) • 1.76 kB
JSON
{
"name": "booking-ui",
"version": "0.0.1",
"description": "React booking widget component for ZvenBook booking system",
"keywords": [
"booking",
"scheduling",
"appointments",
"react",
"component",
"widget"
],
"author": "ZvenBook",
"license": "MIT",
"homepage": "https://github.com/your-org/booking-system#readme",
"repository": {
"type": "git",
"url": "https://github.com/your-org/booking-system.git",
"directory": "packages/ui"
},
"bugs": {
"url": "https://github.com/your-org/booking-system/issues"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./styles.css": "./styles.css"
},
"files": [
"dist",
"tailwind-preset.js",
"styles.css"
],
"scripts": {
"build": "tsup src/index.tsx --format cjs,esm --dts",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/pro-light-svg-icons": "^7.1.0",
"@fortawesome/pro-regular-svg-icons": "^7.1.0",
"@fortawesome/pro-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.0",
"booking-api-sdk": "^1.1.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"tailwind-merge": "^2.5.2"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
}
}