-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
85 lines (85 loc) · 2.17 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
{
"name": "react-native-image-colors",
"version": "2.4.0",
"description": "Fetch prominent colors from an image.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "open -a \"Xcode\" example/ios",
"open:android": "open -a \"Android Studio\" example/android"
},
"keywords": [
"react-native",
"expo",
"react-native-image-colors",
"RNImageColors",
"ios",
"android",
"react",
"image",
"dominant",
"average",
"color",
"palette"
],
"repository": "https://github.com/osamaqarem/react-native-image-colors",
"bugs": {
"url": "https://github.com/osamaqarem/react-native-image-colors/issues"
},
"author": "OsamaQarem <[email protected]> (https://github.com/osamaqarem)",
"license": "MIT",
"homepage": "https://github.com/osamaqarem/react-native-image-colors#readme",
"dependencies": {
"node-vibrant": "3.1.6"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@types/react": "~18.0.27",
"@types/react-native": "^0.72.2",
"babel-preset-expo": "^9.3.1",
"eslint": "^8.39.0",
"expo-module-scripts": "^3.4.0",
"expo-modules-core": "^1.11.2",
"jest": "^29.5.0",
"jest-expo": "^49.0.0",
"prettier": "^2.8.8",
"react-native": "0.72.1",
"release-it": "^15.11.0"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!@react-native|react-native|expo-modules-core)"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true,
"autoGenerate": true,
"releaseName": "${version}"
}
}
}