forked from 24jieqi/react-native-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.98 KB
/
package.json
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
{
"name": "@fruits-chain/react-native-upload",
"version": "2.4.6",
"description": "A React-Native UI Component to upload image/video and preview",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"react-native": "src/index.tsx",
"types": "dist/typescript/index.d.ts",
"source": "src/index.tsx",
"files": [
"dist",
"src",
"index.d.ts"
],
"scripts": {
"build": "rm -rf dist && bob build",
"dev": "tsc -p tsconfig.dev.json",
"lint:ts": "tsc --noEmit && eslint src --ext .ts,.tsx --quiet",
"prepare": "yarn build"
},
"keywords": [
"react-native",
"image",
"video",
"compress",
"upload",
"preview",
"ui"
],
"author": {
"name": "Limoer96",
"url": "https://limoer.cc"
},
"homepage": "https://github.com/hjfruit/react-native-upload2",
"bugs": "https://github.com/hjfruit/react-native-upload2/issues",
"repository": {
"type": "git",
"url": "https://github.com/hjfruit/react-native-upload2"
},
"license": "MIT",
"peerDependencies": {
"@fruits-chain/react-native-xiaoshu": "^0.3.16",
"react": "^17.0.2",
"react-native": "^0.65.1",
"react-native-blob-util": "^0.15.0",
"react-native-compressor": "^1.5.2",
"react-native-document-picker": "^8.1.3",
"react-native-fast-image": "^8.5.8",
"react-native-fs": "^2.19.0",
"react-native-gesture-handler": "^2.9.0",
"react-native-image-crop-picker": "^0.38.0",
"react-native-photo-manipulator": "^1.2.7",
"react-native-reanimated": "2.14.4",
"react-native-safe-area-context": "^4.5.0",
"react-native-video": "^5.1.1",
"react-native-vision-camera": "^2.15.4"
},
"devDependencies": {
"@fruits-chain/eslint-config-rn": "^0.3.11",
"@fruits-chain/prettier-config-preset": "^0.0.3",
"@fruits-chain/react-native-xiaoshu": "^0.3.16",
"@types/lodash": "^4.14.181",
"@types/react": "^17.0.24",
"@types/react-native": "^0.65.1",
"@types/react-native-video": "^5.0.9",
"react": "^17.0.2",
"react-native": "^0.65.1",
"react-native-blob-util": "^0.19.4",
"react-native-builder-bob": "^0.23.1",
"react-native-compressor": "^1.5.2",
"react-native-document-picker": "^8.1.3",
"react-native-fast-image": "^8.5.8",
"react-native-fs": "^2.19.0",
"react-native-gesture-handler": "^2.9.0",
"react-native-image-crop-picker": "^0.40.2",
"react-native-photo-manipulator": "^1.2.7",
"react-native-reanimated": "2.14.4",
"react-native-safe-area-context": "^4.5.0",
"react-native-video": "^5.1.1",
"react-native-vision-camera": "^2.15.4",
"typescript": "^4.6.3"
},
"dependencies": {
"@fruits-chain/utils": "^1.0.5",
"lodash": "^4.17.21",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-url-polyfill": "^1.3.0"
},
"prettier": "@fruits-chain/prettier-config-preset",
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}