-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
118 lines (118 loc) · 2.82 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-native-gallery-preview",
"version": "1.3.2",
"description": "test",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"!lib/typescript/example",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check \"./src/**/*.{js,jsx,ts,tsx}\" --no-error-on-unmatched-pattern",
"format:write": "prettier --write \"./src/**/*.{js,jsx,ts,tsx}\" --no-error-on-unmatched-pattern",
"prepack": "bob build",
"example": "yarn --cwd example",
"release": "release-it"
},
"keywords": [
"react-native",
"ios",
"android",
"reanimated",
"photo-viewer",
"image-viewer",
"photo-preview",
"photo-gallery",
"gallery"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chrizuuu/react-native-gallery-preview.git"
},
"author": "Krzysztof Bonecki <krzysztofboneckikontakt@gmail.com> (https://github.com/chrizuuu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrizuuu/react-native-gallery-preview/issues"
},
"homepage": "https://github.com/chrizuuu/react-native-gallery-preview#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@react-native/eslint-config": "^0.73.2",
"@types/react": "~18.3.3",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "3.3.3",
"react": "18.3.1",
"react-native": "^0.74.3",
"react-native-builder-bob": "^0.28.1",
"react-native-gesture-handler": "^2.17.1",
"react-native-reanimated": "^3.14.0",
"release-it": "17.6.0",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "^2.0.0",
"react-native-reanimated": "^3.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"directories": {
"example": "example",
"lib": "lib"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
}
}
}