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

33 lines
1.1 KiB
JSON
Raw Normal View History

2022-03-31 08:45:47 +00:00
{
"name": "@calcom/embed-snippet",
"version": "1.0.4",
"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"
},
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",
"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"
2022-03-31 08:45:47 +00:00
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
2022-03-31 08:45:47 +00:00
"devDependencies": {
2022-06-01 21:46:48 +00:00
"eslint": "^8.15.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@calcom/embed-core": "*"
2022-03-31 08:45:47 +00:00
}
}