-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "react-native-reanimated-image-viewer",
"version": "1.0.2",
"description": "A image viewer for React Native created with Reanimated",
"main": "./build/dist/index.js",
"repository": {
"type": "git",
"url": "[email protected]:andresribeiro/react-native-reanimated-image-viewer.git"
},
"author": "André Ribeiro",
"bugs": "https://github.com/andresribeiro/react-native-reanimated-image-viewer/issues",
"license": "MIT",
"homepage": "https://github.com/andresribeiro/react-native-reanimated-image-viewer#readme",
"keywords": [
"react-native",
"react",
"reanimated",
"image",
"image-viewer",
"image-viewing",
"viewer",
"viewing",
"pinch",
"pan",
"zoom",
"double-tap",
"rn",
"typescript"
],
"scripts": {
"build": "cd lib && tsc && npm run copy:package",
"lint": "biome check .",
"lint:fix": "biome format . --write",
"copy:package": "cpx '../package.json' '../build/dist/'"
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^17.4.0",
"@types/react": "^18.0.26",
"@types/react-native": "^0.70.8",
"cpx": "^1.5.0",
"cz-emoji": "^1.3.2-canary.2",
"react": "^18.1.0",
"react-native": "^0.70.6",
"react-native-gesture-handler": "^2.8.0",
"react-native-reanimated": "^2.13.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*",
"react-native-reanimated": "*"
}
}