* Update all Yarn dependencies (2022-07-29) * Adds syncpack config * Fixes mismatches * Update yarn.lock * RRule fixes * Locking dayjs to fix build * Type fixes * Fixes mismatches * Submodule sync * Update yarn.lock * Update event.ts * Conflict fixes * Fixes prisma warnings * Liting * Upgrade next, zod * Prevents articfact overwriting * Yarn fixes * Jest fixes * Submodule sync * Formatting * Submodule sync * Adds provider for react-tooltip * Removed dotenv-cli * Readds dotenv-cli * Skips getSchedule tests Until prisma is mocked properly * Fixes * Revert prisma seed script * E2E fixes * test * Removed deprecated req.page in middleware * Make tests stable * Unskip getSchedule tests * fixed 404 logo on cal video (#3885) * Removed PW aliases as aren't needed anymore Co-authored-by: depfu[bot] <23717796+depfu[bot]@users.noreply.github.com> Co-authored-by: zomars <zomars@me.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
54 lines
2.0 KiB
JSON
54 lines
2.0 KiB
JSON
{
|
|
"name": "@calcom/embed-core",
|
|
"version": "1.1.2",
|
|
"description": "This is the vanilla JS core script that embeds Cal Link",
|
|
"main": "./dist/embed/embed.js",
|
|
"types": "./dist/index.d.ts",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/calcom/cal.com",
|
|
"directory": "packages/embeds/embed-core"
|
|
},
|
|
"scripts": {
|
|
"embed-dev": "yarn workspace @calcom/embed-core dev",
|
|
"embed-web-start": "yarn workspace @calcom/web start",
|
|
"__build": "yarn tailwind && vite build && tsc --emitDeclarationOnly --declarationDir dist && cp -r ../../../apps/web/public/embed ./dist/",
|
|
"__dev": "yarn tailwind && vite build --mode development",
|
|
"build": "NEXT_PUBLIC_EMBED_FINGER_PRINT=$(git rev-parse --short HEAD) yarn __build",
|
|
"build-preview": "PREVIEW_BUILD=1 yarn __build ",
|
|
"vite": "vite",
|
|
"tailwind": "yarn tailwindcss -i ./src/styles.css -o ./src/tailwind.generated.css",
|
|
"buildWatchAndServer": "run-p '__dev' 'vite --port 3100 --strict-port --open'",
|
|
"dev": "yarn tailwind && run-p 'tailwind --watch' 'buildWatchAndServer'",
|
|
"dev-real": "vite dev --port 3100",
|
|
"type-check": "tsc --pretty --noEmit",
|
|
"lint": "eslint --ext .ts,.js src",
|
|
"embed-tests": "yarn playwright test --config=playwright/config/playwright.config.ts",
|
|
"embed-tests-quick": "QUICK=true yarn embed-tests",
|
|
"embed-tests-update-snapshots:ci": "yarn embed-tests-quick --update-snapshots",
|
|
"prepare": "NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build",
|
|
"publish-prod:patch": "yarn publish --access public --patch",
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf ../../../apps/web/public/embed"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"postcss": {
|
|
"map": false,
|
|
"plugins": {
|
|
"tailwindcss": {},
|
|
"autoprefixer": {}
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^10.4.7",
|
|
"eslint": "^8.20.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.4.13",
|
|
"typescript": "^4.7.4",
|
|
"vite": "^2.9.14",
|
|
"tailwindcss": "^3.1.6"
|
|
}
|
|
}
|