@openeditor/react-native-prose-editor 0.0.2 → 0.0.4

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.
Files changed (1) hide show
  1. package/package.json +47 -71
package/package.json CHANGED
@@ -1,74 +1,50 @@
1
1
  {
2
- "name": "@openeditor/react-native-prose-editor",
3
- "version": "0.0.2",
4
- "description": "OpenEditor-owned native rich text editor engine for React Native",
5
- "license": "Apache-2.0",
6
- "homepage": "https://github.com/EasyLink-HQ/openeditor",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/EasyLink-HQ/openeditor.git"
2
+ "name": "@openeditor/react-native-prose-editor",
3
+ "version": "0.0.4",
4
+ "description": "OpenEditor-owned native rich text editor engine for React Native",
5
+ "license": "Apache-2.0",
6
+ "homepage": "https://github.com/EasyLink-HQ/openeditor",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/EasyLink-HQ/openeditor.git",
10
+ "directory": "packages/react-native-prose-editor"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/EasyLink-HQ/openeditor/issues"
14
+ },
15
+ "main": "dist/index.js",
16
+ "module": "dist/index.js",
17
+ "react-native": "dist/index.js",
18
+ "types": "dist/index.d.ts",
19
+ "exports": {
20
+ ".": {
21
+ "types": "./dist/index.d.ts",
22
+ "react-native": "./dist/index.js",
23
+ "default": "./dist/index.js"
10
24
  },
11
- "bugs": {
12
- "url": "https://github.com/EasyLink-HQ/openeditor/issues"
13
- },
14
- "main": "dist/index.js",
15
- "module": "dist/index.js",
16
- "react-native": "dist/index.js",
17
- "types": "dist/index.d.ts",
18
- "exports": {
19
- ".": {
20
- "types": "./dist/index.d.ts",
21
- "react-native": "./dist/index.js",
22
- "default": "./dist/index.js"
23
- },
24
- "./app.plugin": "./app.plugin.js",
25
- "./app.plugin.js": "./app.plugin.js"
26
- },
27
- "private": false,
28
- "publishConfig": {
29
- "access": "public"
30
- },
31
- "scripts": {
32
- "build": "tsc -p tsconfig.build.json",
33
- "bench:rust": "cargo bench --manifest-path rust/editor-core/Cargo.toml --bench perf_suite --",
34
- "bench:rust:quick": "cargo bench --manifest-path rust/editor-core/Cargo.toml --bench perf_suite -- --quick",
35
- "typecheck": "tsc --noEmit",
36
- "android:test:device": "bash ./scripts/run-android-on-device.sh",
37
- "android:test:ime:device": "bash ./scripts/run-android-on-device.sh --class com.openeditor.editor.NativeDeviceImeRegressionTest",
38
- "android:test:perf:device": "bash ./scripts/run-android-on-device.sh --class com.openeditor.editor.NativeDevicePerformanceTest",
39
- "ios:test": "bash ./scripts/run-ios-tests.sh",
40
- "ios:test:perf": "bash ./scripts/run-ios-tests.sh -only-testing:NativeEditorTests/NativePerformanceTests",
41
- "ios:test:device": "bash ./scripts/run-ios-on-device.sh",
42
- "ios:test:perf:device": "bash ./scripts/run-ios-on-device.sh -only-testing:NativeEditorTests/NativePerformanceTests",
43
- "build:rust": "cd rust && bash build-ios.sh && bash build-android.sh && bash generate-bindings.sh",
44
- "build:rust:ios": "cd rust && bash build-ios.sh && bash generate-bindings.sh",
45
- "build:rust:android": "cd rust && bash build-android.sh && bash generate-bindings.sh"
46
- },
47
- "peerDependencies": {
48
- "@expo/vector-icons": ">=14.0.0",
49
- "expo": ">=52.0.0",
50
- "expo-modules-core": ">=52.0.0",
51
- "react": ">=18.0.0",
52
- "react-native": ">=0.76.0"
53
- },
54
- "devDependencies": {
55
- "@expo/vector-icons": "15.0.3",
56
- "@types/react": "^19.2.14",
57
- "expo-modules-core": "56.0.17",
58
- "react": "19.2.3",
59
- "react-native": "0.85.3",
60
- "typescript": "^5.9.3",
61
- "prettier": "^3.8.1"
62
- },
63
- "files": [
64
- "README.md",
65
- "LICENSE",
66
- "app.plugin.js",
67
- "dist",
68
- "android",
69
- "ios",
70
- "rust/android",
71
- "rust/bindings/kotlin",
72
- "expo-module.config.json"
73
- ]
25
+ "./app.plugin": "./app.plugin.js",
26
+ "./app.plugin.js": "./app.plugin.js"
27
+ },
28
+ "private": false,
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "peerDependencies": {
33
+ "@expo/vector-icons": ">=14.0.0",
34
+ "expo": ">=52.0.0",
35
+ "expo-modules-core": ">=52.0.0",
36
+ "react": ">=18.0.0",
37
+ "react-native": ">=0.76.0"
38
+ },
39
+ "files": [
40
+ "README.md",
41
+ "LICENSE",
42
+ "app.plugin.js",
43
+ "dist",
44
+ "android",
45
+ "ios",
46
+ "rust/android",
47
+ "rust/bindings/kotlin",
48
+ "expo-module.config.json"
49
+ ]
74
50
  }