-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.43 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
{
"name": "react-native-truncation-text",
"version": "1.0.0",
"description": "A Text extension React Native component that includes onTruncationChange to enable reading more",
"main": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup src/index.ts --dts --clean --format esm --legacy-output --sourcemap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BooYeu/react-native-truncation-text.git"
},
"keywords": [
"react-native",
"react-native-truncation-text",
"react-native-read-more-text",
"text",
"read more",
"truncate",
"truncation"
],
"author": "liulirui",
"license": "ISC",
"bugs": {
"url": "https://github.com/BooYeu/react-native-truncation-text/issues"
},
"homepage": "https://github.com/BooYeu/react-native-truncation-text#readme",
"devDependencies": {
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "8.22",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^2.8.3",
"react": "*",
"react-native": "*",
"react-native-builder-bob": "^0.20.4",
"tsup": "^6.5.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}