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

37 lines
1.1 KiB
JSON
Raw Normal View History

2022-03-31 08:45:47 +00:00
{
"name": "@calcom/embed-core",
"version": "1.0.0",
"description": "This is the vanilla JS core script that embeds Cal Link",
2022-03-31 08:45:47 +00:00
"main": "./index.ts",
"scripts": {
"build": "vite build",
"build:cal": "NEXT_PUBLIC_WEBSITE_URL='https://cal.com' yarn build",
2022-03-31 08:45:47 +00:00
"vite": "vite",
"tailwind": "yarn tailwindcss -i ./src/styles.css -o ./src/tailwind.generated.css --watch",
"buildWatchAndServer": "run-p 'build --watch' 'vite --port 3100 --strict-port --open'",
"dev": "run-p 'tailwind' 'buildWatchAndServer'",
2022-03-31 08:45:47 +00:00
"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"
},
"postcss": {
"map": false,
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
2022-03-31 08:45:47 +00:00
},
"devDependencies": {
"autoprefixer": "^10.4.4",
"eslint": "^8.10.0",
"postcss": "^8.4.12",
"vite": "^2.8.6"
},
"dependencies": {
"tailwindcss": "^3.0.24",
"tsc": "^2.0.4",
"typescript": "^4.6.3"
2022-03-31 08:45:47 +00:00
}
}