@bsky.app/tapper 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -30
- package/package.json +3 -8
package/README.md
CHANGED
|
@@ -1,32 +1,3 @@
|
|
|
1
1
|
# @bsky.app/tapper
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
# API documentation
|
|
6
|
-
|
|
7
|
-
- [Documentation for the latest stable release](https://docs.expo.dev/versions/latest/sdk/@bsky.app/tapper/)
|
|
8
|
-
- [Documentation for the main branch](https://docs.expo.dev/versions/unversioned/sdk/@bsky.app/tapper/)
|
|
9
|
-
|
|
10
|
-
# Installation in managed Expo projects
|
|
11
|
-
|
|
12
|
-
For [managed](https://docs.expo.dev/archive/managed-vs-bare/) Expo projects, please follow the installation instructions in the [API documentation for the latest stable release](#api-documentation). If you follow the link and there is no documentation available then this library is not yet usable within managed projects — it is likely to be included in an upcoming Expo SDK release.
|
|
13
|
-
|
|
14
|
-
# Installation in bare React Native projects
|
|
15
|
-
|
|
16
|
-
For bare React Native projects, you must ensure that you have [installed and configured the `expo` package](https://docs.expo.dev/bare/installing-expo-modules/) before continuing.
|
|
17
|
-
|
|
18
|
-
### Add the package to your npm dependencies
|
|
19
|
-
|
|
20
|
-
```
|
|
21
|
-
npm install @bsky.app/tapper
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
### Configure for Android
|
|
25
|
-
|
|
26
|
-
### Configure for iOS
|
|
27
|
-
|
|
28
|
-
Run `npx pod-install` after installing the npm package.
|
|
29
|
-
|
|
30
|
-
# Contributing
|
|
31
|
-
|
|
32
|
-
Contributions are very welcome! Please refer to guidelines described in the [contributing guide](https://github.com/expo/expo#contributing).
|
|
3
|
+
A minimal rich text editor for React Native and web.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bsky.app/tapper",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "A minimal rich text editor for React Native and web.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
@@ -21,13 +21,8 @@
|
|
|
21
21
|
"tapper",
|
|
22
22
|
"Tapper"
|
|
23
23
|
],
|
|
24
|
-
"
|
|
25
|
-
"bugs": {
|
|
26
|
-
"url": "https://github.com/estrattonbailey/tapper/issues"
|
|
27
|
-
},
|
|
28
|
-
"author": "Bluesky Social PBLLC <git@esb.lol> (https://github.com/estrattonbailey)",
|
|
24
|
+
"author": "Bluesky Social, PBLLC",
|
|
29
25
|
"license": "MIT",
|
|
30
|
-
"homepage": "https://github.com/estrattonbailey/tapper#readme",
|
|
31
26
|
"dependencies": {},
|
|
32
27
|
"devDependencies": {
|
|
33
28
|
"@types/react": "~19.1.1",
|