-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.88 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 2.88 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "react-native-reader-text",
"version": "0.1.1",
"description": "Native-quality selectable text for React Native book readers, study apps, and multilingual reading experiences.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"files": [
"src/**/*",
"lib/**/*",
"android/build.gradle",
"android/src/**/*",
"ios/**/*.{h,m,mm,swift}",
"react-native-reader-text.podspec",
"react-native.config.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bob build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src __tests__ example/src",
"lint:fix": "eslint src __tests__ example/src --fix",
"typecheck": "tsc --noEmit",
"test": "jest --coverage",
"clean": "rimraf lib coverage",
"prepare": "bob build"
},
"keywords": [
"react-native",
"reader",
"text",
"selection",
"highlight",
"rtl",
"typography"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bilal-/react-native-reader-text.git"
},
"author": "dev.bilalahmad (Bilal Ahmad)",
"license": "MIT",
"funding": {
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/bilaldev"
},
"bugs": {
"url": "https://github.com/bilal-/react-native-reader-text/issues"
},
"homepage": "https://github.com/bilal-/react-native-reader-text#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.0",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"jest": "^29.7.0",
"prettier": "^3.8.3",
"react": "^19.0.0",
"react-native": "^0.79.0",
"react-native-builder-bob": "^0.40.13",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.60.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/__tests__"
],
"collectCoverageFrom": [
"src/utils.ts"
],
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"codegenConfig": {
"name": "ReaderTextViewSpec",
"type": "components",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "dev.bilalahmad.readertext"
},
"ios": {
"componentProvider": {
"ReaderTextView": "ReaderTextComponentView"
}
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}