-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 KB
/
package.json
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
{
"name": "react-embed-calendly",
"version": "0.1.2",
"description": "Embed Calendly widget in your React app",
"main": "request.js",
"type": "module",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/huksley/react-embed-calendly.git"
},
"bugs": "https://github.com/huksley/react-embed-calendly/issues",
"homepage": "https://github.com/huksley/react-embed-calendly",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "esbuild index.tsx --format=esm --out-extension:.js=.mjs --outdir=dist --sourcemap --bundle --minify && esbuild index.tsx --format=cjs --outdir=dist --sourcemap --bundle --minify && tsc --emitDeclarationOnly --declaration --project tsconfig.json"
},
"author": "Ruslan Gainutdinov",
"license": "MIT",
"keywords": [
"react",
"calendly",
"embed",
"widget"
],
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependenciesMeta": {
"node-fetch": {
"optional": true
}
},
"devDependencies": {
"esbuild": "^0.16.17",
"typescript": "^4.9.4"
}
}