35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"name": "@calcom/embed-snippet",
|
|
"sideEffects": false,
|
|
"version": "1.0.5",
|
|
"main": "./dist/snippet.umd.js",
|
|
"module": "./dist/snippet.es.js",
|
|
"description": "Vanilla JS embed snippet that is responsible to fetch @calcom/embed-core and thus show Cal Link as an embed on a page.",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/calcom/cal.com",
|
|
"directory": "packages/embeds/embed-snippet"
|
|
},
|
|
"scripts": {
|
|
"build": "vite build && tsc --emitDeclarationOnly --declarationDir dist",
|
|
"type-check": "tsc --pretty --noEmit",
|
|
"lint": "eslint --ext .ts,.js src",
|
|
"prepare": "NEXT_PUBLIC_EMBED_LIB_URL='https://app.cal.com/embed/embed.js' 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 dist"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"types": "./dist/index.d.ts",
|
|
"devDependencies": {
|
|
"eslint": "^8.34.0",
|
|
"typescript": "^4.9.4",
|
|
"vite": "^4.1.2"
|
|
},
|
|
"dependencies": {
|
|
"@calcom/embed-core": "*"
|
|
}
|
|
}
|