cal.pub0.org/packages/embeds/embed-react/package.json

57 lines
1.8 KiB
JSON
Raw Normal View History

2022-03-31 08:45:47 +00:00
{
"name": "@calcom/embed-react",
"sideEffects": false,
"version": "1.0.9",
"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"
},
2022-03-31 08:45:47 +00:00
"scripts": {
"dev": "vite --port=3101 --open",
2022-06-05 19:53:14 +00:00
"build": "vite build && tsc --emitDeclarationOnly --declarationDir dist",
2022-03-31 08:45:47 +00:00
"preview": "vite preview",
"prepare": "NEXT_PUBLIC_EMBED_LIB_URL='https://app.cal.com/embed/embed.js' NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build",
"type-check": "tsc --pretty --noEmit",
"lint": "eslint --ext .ts,.js,.tsx,.jsx ./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",
"embed-web-start": "yarn workspace @calcom/web start",
"embed-dev": "yarn workspace @calcom/embed-react dev",
"publish-prod:patch": "yarn publish --access public --patch",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
2022-03-31 08:45:47 +00:00
},
"main": "./dist/Cal.umd.js",
"module": "./dist/Cal.es.js",
"types": "./dist/index.d.ts",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/Cal.es.js",
"require": "./dist/Cal.umd.js"
}
},
2022-03-31 08:45:47 +00:00
"devDependencies": {
"@types/react": "^18.0.17",
2022-11-04 19:15:12 +00:00
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^1.3.2",
"eslint": "^8.22.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.7.4",
2022-11-05 06:10:00 +00:00
"vite": "^2.9.15"
},
"dependencies": {
"@calcom/embed-core": "*",
"@calcom/embed-snippet": "*"
2022-03-31 08:45:47 +00:00
}
}