-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.63 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@majornutcracker/react-native-selectable-text",
"version": "1.0.0",
"description": "A MajorNutcracker Expo module for react-native-webview that enables advanced text selection, custom menus, and persistent highlighting via Rangy. Native iOS and Android bridge (Swift/Kotlin) to serialize, sync, and restore HTML content selections.",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"packageManager": "yarn@1.22.22",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"prepare": "husky",
"configure": "expo-module configure",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android"
},
"keywords": [
"react-native",
"expo",
"@majornutcracker/react-native-selectable-text",
"MajorNutcracker",
"selectable text",
"text selection",
"rangy",
"highlighting",
"serialization",
"synchronization",
"restoration",
"native module",
"expo module",
"react-native-webview",
"text selection library",
"react-native text selection",
"expo text selection",
"ios",
"android"
],
"repository": "https://github.com/majornutcracker-dev/react-native-selectable-text",
"bugs": {
"url": "https://github.com/majornutcracker-dev/react-native-selectable-text/issues"
},
"author": "MajorNutcracker <joshiparsa@gmail.com> (JoshuaPariona)",
"license": "MIT",
"homepage": "https://docs.majornutcracker.com/react-native-selectable-text/1.0.0",
"devDependencies": {
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/react": "~19.2.4",
"eslint": "^10.7.0",
"eslint-plugin-prettier": "^5.5.6",
"expo": "~57.0.0",
"expo-module-scripts": "~56.0.0",
"globals": "^17.7.0",
"husky": "^9.1.0",
"jest": "^29.7.0",
"jest-expo": "~57.0.2",
"react": "19.2.3",
"lint-staged": "^17.1.0",
"prettier": "^3.9.5",
"react-native": "~0.86.0",
"react-native-webview": "13.16.1",
"typescript": "~6.0.3",
"typescript-eslint": "^8.64.0"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*",
"react-native-webview": "^13.16.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"expo-module lint"
],
"*.{json,md}": [
"prettier --write"
]
}
}