* chore: examples app make managed user admin * fix: phone field not appearing * fix: booking fields order * feat: local libraries setup script * chore: add log when parsing booking field fails * fix: backwards compatbile name booking field * chore: libraries publish support scripts * chore: bump libraries * docs * fix: phone default field return label and placeholder * fix: e2e tests
33 lines
1.0 KiB
JSON
33 lines
1.0 KiB
JSON
{
|
|
"name": "@calcom/platform-libraries",
|
|
"version": "0.0.0",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn vite build",
|
|
"build:watch": "yarn vite build --watch",
|
|
"build:dev": "yarn vite build && sed -i'' -e 's/const CACHE = new lruCache\\.LRUCache({ max: 1e3 });/const CACHE = new lruCache({ max: 1e3 });/g' ./dist/index.cjs",
|
|
"local": "node scripts/local.js && rm -rf dist && yarn build:dev && cd ../../.. && yarn",
|
|
"publish": "yarn && node scripts/prepublish.js && rm -rf dist && yarn build && npm publish --access public",
|
|
"postpublish": "node scripts/postpublish.js"
|
|
},
|
|
"dependencies": {
|
|
"@calcom/core": "*",
|
|
"@calcom/features": "*",
|
|
"@calcom/lib": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.3.1",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"typescript": "^4.9.4",
|
|
"vite": "^5.0.12",
|
|
"vite-plugin-dts": "^3.7.2",
|
|
"vite-plugin-environment": "^1.1.3"
|
|
}
|
|
}
|