2022-03-31 08:45:47 +00:00
|
|
|
{
|
|
|
|
"name": "@calcom/embed-snippet",
|
2022-08-11 16:36:30 +00:00
|
|
|
"sideEffects": false,
|
2023-02-23 12:55:02 +00:00
|
|
|
"version": "1.0.5",
|
2022-05-27 15:37:02 +00:00
|
|
|
"main": "./dist/snippet.umd.js",
|
|
|
|
"module": "./dist/snippet.es.js",
|
2022-04-15 17:55:36 +00:00
|
|
|
"description": "Vanilla JS embed snippet that is responsible to fetch @calcom/embed-core and thus show Cal Link as an embed on a page.",
|
2022-06-07 08:25:55 +00:00
|
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/calcom/cal.com",
|
|
|
|
"directory": "packages/embeds/embed-snippet"
|
|
|
|
},
|
2022-03-31 08:45:47 +00:00
|
|
|
"scripts": {
|
2022-06-05 19:53:14 +00:00
|
|
|
"build": "vite build && tsc --emitDeclarationOnly --declarationDir dist",
|
2022-03-31 08:45:47 +00:00
|
|
|
"type-check": "tsc --pretty --noEmit",
|
2023-03-28 20:12:40 +00:00
|
|
|
"type-check:ci": "tsc-absolute --pretty --noEmit",
|
2022-05-27 15:37:02 +00:00
|
|
|
"lint": "eslint --ext .ts,.js src",
|
2022-06-10 09:49:38 +00:00
|
|
|
"prepare": "NEXT_PUBLIC_EMBED_LIB_URL='https://app.cal.com/embed/embed.js' NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build",
|
2022-07-07 06:00:48 +00:00
|
|
|
"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
|
|
|
},
|
2022-05-27 15:37:02 +00:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"types": "./dist/index.d.ts",
|
2022-03-31 08:45:47 +00:00
|
|
|
"devDependencies": {
|
2023-02-23 12:55:02 +00:00
|
|
|
"typescript": "^4.9.4",
|
|
|
|
"vite": "^4.1.2"
|
2022-05-27 15:37:02 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-03-15 22:01:04 +00:00
|
|
|
"@calcom/embed-core": "workspace:*"
|
2022-03-31 08:45:47 +00:00
|
|
|
}
|
|
|
|
}
|