-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.16 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
{
"name": "react-native-crop-viewer",
"version": "1.0.3",
"description": "A crop view component for React Native",
"scripts": {
"build": "tsc",
"prepare": "bob build"
},
"keywords": [
"react-native",
"crop",
"image"
],
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "^18.3.1",
"@types/react-native": "^0.73.0",
"react-native-builder-bob": "^0.35.2",
"react-native-svg": ">=12.0.0",
"typescript": "^4.9.0"
},
"source": "./src/index.tsx",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"esm": true
}
],
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"esm": true
}
]
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"main": "./lib/commonjs/index.js",
"module": "./lib/module/index.js",
"types": "./lib/typescript/commonjs/index.d.ts"
}