@bsky.app/tapper 0.5.3 → 0.5.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @bsky.app/tapper
2
2
 
3
+ ## 0.5.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [`818b97d`](https://github.com/bluesky-social/toolbox/commit/818b97d984bdfccfcf05db2e252b3789c1fa8487) Thanks [@mozzius](https://github.com/mozzius)! - Add --provenance flag to publish
8
+
9
+ ## 0.5.5
10
+
11
+ ### Patch Changes
12
+
13
+ - [#45](https://github.com/bluesky-social/toolbox/pull/45) [`3edc0b3`](https://github.com/bluesky-social/toolbox/commit/3edc0b369f8a563763a240ba829fae20e0cf54e5) Thanks [@mozzius](https://github.com/mozzius)! - Fix trusted publishing
14
+
15
+ ## 0.5.4
16
+
17
+ ### Patch Changes
18
+
19
+ - [#43](https://github.com/bluesky-social/toolbox/pull/43) [`a5feb85`](https://github.com/bluesky-social/toolbox/commit/a5feb85c7eef69385d459d2b0d26a474548ea6db) Thanks [@mozzius](https://github.com/mozzius)! - Enable trusted publishing
20
+
3
21
  ## 0.5.3
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bsky.app/tapper",
3
- "version": "0.5.3",
3
+ "version": "0.5.6",
4
4
  "license": "MIT",
5
5
  "description": "A minimal rich text editor for React Native and web.",
6
6
  "repository": "https://github.com/bluesky-social/toolbox",
@@ -14,13 +14,12 @@
14
14
  "tapper",
15
15
  "Tapper"
16
16
  ],
17
- "dependencies": {},
18
17
  "devDependencies": {
19
- "@types/react": "~19.1.1",
20
- "expo-module-scripts": "^55.0.2",
21
- "vitest": "^3.1.1",
18
+ "@types/react": "~19.2.15",
22
19
  "expo": "^55.0.8",
23
- "react-native": "0.82.1"
20
+ "expo-module-scripts": "^55.0.2",
21
+ "react-native": "0.82.1",
22
+ "vitest": "^3.1.1"
24
23
  },
25
24
  "peerDependencies": {
26
25
  "expo": "*",
package/tsconfig.json CHANGED
@@ -2,6 +2,7 @@
2
2
  {
3
3
  "extends": "expo-module-scripts/tsconfig.base",
4
4
  "compilerOptions": {
5
+ "rootDir": "./src",
5
6
  "outDir": "./build"
6
7
  },
7
8
  "include": ["./src"],