This repository was archived by the owner on Mar 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@calemly/sdk",
"version": "0.1.2",
"description": "React SDK for Calemly booking widgets",
"repository": {
"type": "git",
"url": "https://github.com/BotCoder254/calemly-react-sdk"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./styles.css": "./dist/index.css"
},
"files": [
"dist",
"README.md"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"build": "npm run build:js && npm run build:css",
"build:css": "tailwindcss -c tailwind.config.js -i ./src/index.css -o ./dist/index.css --minify",
"build:js": "tsup src/index.js --format cjs,esm --splitting false --external react --external react-dom --loader .js=jsx --clean",
"dev": "npm run build:css && tsup src/index.js --format cjs,esm --splitting false --external react --external react-dom --loader .js=jsx --watch",
"test": "npm run build && node --test tests/*.test.mjs"
},
"dependencies": {
"@stripe/react-stripe-js": "^3.10.0",
"@stripe/stripe-js": "^7.9.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"framer-motion": "^12.24.10",
"lucide-react": "^0.562.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"jsdom": "^26.1.0",
"tailwindcss": "^3.4.19",
"typescript": "^5.7.3",
"tsup": "^8.3.0"
}
}