Skip to content

Commit a07968c

Browse files
committed
init
1 parent 8e593e1 commit a07968c

10 files changed

+5973
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ yarn-debug.log*
66
yarn-error.log*
77
lerna-debug.log*
88
.pnpm-debug.log*
9+
lib/
10+
.idea/
911

1012
# Diagnostic reports (https://nodejs.org/api/report.html)
1113
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

README.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
11
# react-native-calendly
2-
Minimalistic React Native Calendly npm package.
2+
Minimalistic React Native Calendly npm package.
3+
4+
## Get started
5+
- `pnpm i @wavect/react-native-calendly` or
6+
- `npm i @wavect/react-native-calendly` or
7+
- `yarn add @wavect/react-native-calendly`
8+
9+
## Disclaimer
10+
This software is provided as is and no guarantees are being made.
11+
12+
## Contributions
13+
- [@tcampb](https://github.com/tcampb)
14+
- [@wsdt](https://github.com/wsdt)
15+
16+
This package originated from [this Github thread](https://github.com/tcampb/react-calendly/issues/190).
17+
18+
## About
19+
[Wavect GmbH](https://wavect.io) is a Web3 Product Studio building Software with a strong focus on achieving Product-Market-Fit.

package.json

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "@wavect/react-native-calendly",
3+
"version": "1.0.0",
4+
"private": false,
5+
"description": "React Native library to integrate Calendly into your Expo/React Native app",
6+
"main": "lib/index.js",
7+
"types": "lib/index.d.ts",
8+
"scripts": {
9+
"build": "tsc"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/wavect/react-native-calendly.git"
14+
},
15+
"keywords": [
16+
"reactnative",
17+
"react",
18+
"calendly",
19+
"expo"
20+
],
21+
"author": "Wavect GmbH",
22+
"license": "MIT",
23+
"bugs": {
24+
"url": "https://github.com/wavect/react-native-calendly/issues"
25+
},
26+
"homepage": "https://wavect.io",
27+
"devDependencies": {
28+
"@types/node": "^22.5.5",
29+
"@types/react": "^18.3.8",
30+
"@types/react-native": "^0.73.0",
31+
"react": "^18.3.1",
32+
"react-native": "^0.75.3",
33+
"typescript": "^5.6.2"
34+
},
35+
"dependencies": {
36+
"react-native-webview": "^13.12.2"
37+
}
38+
}

0 commit comments

Comments
 (0)