7c373ddad6
* Configure biome * Fix companion build * fix: remove generated files from formatter ignore list to enable proper formatting Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix: add explicit stripe dependency to @calcom/features to fix type resolution Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix: rename const require to nodeRequire in generate-swagger.ts to avoid TypeScript reserved identifier conflict Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix: add guard for document in makeBodyVisible to prevent test environment teardown errors Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix: replace ESLint with Biome CLI in embed-code-generator.e2e.ts Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix: address cubic review comments - Fix invalid --reporter-path Biome CLI option by using shell redirection - Fix packages/lib lint report filename (app-store.json -> lib.json) - Add typescript-eslint and eslint back to companion for lint:react-compiler - Add missing restricted import rules to biome.json: - packages/lib: add ../trpc/** and @trpc/server restrictions - packages/trpc: add ../apps/web/** restriction Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * chore: regenerate companion bun.lock after adding eslint dependencies Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * Remove remaining eslint things * add tailwind directives --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
60 lines
2.2 KiB
JSON
60 lines
2.2 KiB
JSON
{
|
|
"name": "@calcom/embed-react",
|
|
"sideEffects": false,
|
|
"version": "1.5.3",
|
|
"description": "Embed Cal Link as a React Component",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/calcom/cal.com",
|
|
"directory": "packages/embeds/embed-react"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite --port=3101 --open",
|
|
"build": "rm -rf dist && vite build && cp ./dist/Cal.es.js ./dist/Cal.es.mjs && tsc --emitDeclarationOnly --declarationDir dist",
|
|
"preview": "vite preview",
|
|
"type-check": "tsc --pretty --noEmit",
|
|
"type-check:ci": "tsc-absolute --pretty --noEmit",
|
|
"lint": "biome lint ./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",
|
|
"packaged:tests": "cd test/packaged && yarn tsc --noEmit && yarn run -T test -- --packaged-embed-tests-only",
|
|
"withEmbedPublishEnv": "NEXT_PUBLIC_EMBED_LIB_URL='https://app.cal.com/embed/embed.js' NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn",
|
|
"prepack": "yarn ../../../ lint --filter='@calcom/embed-react' && yarn withEmbedPublishEnv build && yarn packaged:tests",
|
|
"embed-web-start": "yarn workspace @calcom/web start",
|
|
"embed-dev": "yarn workspace @calcom/embed-react dev",
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"main": "./dist/Cal.umd.js",
|
|
"module": "./dist/Cal.es.mjs",
|
|
"types": "./dist/embed-react/src/index.d.ts",
|
|
"peerDependencies": {
|
|
"react": "^18.2.0 || ^19.0.0",
|
|
"react-dom": "^18.2.0 || ^19.0.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/embed-react/src/index.d.ts",
|
|
"import": "./dist/Cal.es.mjs",
|
|
"require": "./dist/Cal.umd.js"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.57.0",
|
|
"@types/react": "18.0.26",
|
|
"@types/react-dom": "18.2.6",
|
|
"@vitejs/plugin-react": "2.2.0",
|
|
"npm-run-all": "4.1.5",
|
|
"typescript": "5.9.2",
|
|
"vite": "4.5.14"
|
|
},
|
|
"dependencies": {
|
|
"@calcom/embed-core": "workspace:*",
|
|
"@calcom/embed-snippet": "workspace:*"
|
|
}
|
|
}
|