-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
118 lines (118 loc) · 3.15 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": "reanimated-color-picker",
"version": "3.0.6",
"description": "A Pure JavaScript Color Picker for React Native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"react-native": "lib/src/index",
"types": "lib/typescript/index.d.ts",
"scripts": {
"test": "jest --silent=false && tsc --noEmit && eslint src --max-warnings=0",
"build": "node scripts/build.mjs",
"deploy-docs": "git push origin :gh-pages && git subtree push --prefix docs/build origin gh-pages",
"prettier ": "prettier --ignore-unknown --write src --config-precedence prefer-file",
"prepare": "patch-package && npm run test && npm run build"
},
"keywords": [
"react-native",
"react native",
"color picker",
"react native color picker",
"expo",
"android",
"ios",
"web",
"reanimated",
"color",
"picker",
"wheel",
"slider",
"swatches",
"palette",
"rgb",
"hex",
"hsl",
"hsv",
"hsv",
"hwb",
"colorKit"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alabsi91/reanimated-color-picker.git"
},
"author": "Ahmed AlAbsi <[email protected]> (https://github.com/alabsi91)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alabsi91/reanimated-color-picker/issues"
},
"homepage": "https://github.com/alabsi91/reanimated-color-picker",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@react-native/eslint-config": "^0.73.2",
"@types/react": "^18.2.48",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"glob": "^11.0.0",
"jest": "^29.7.0",
"patch-package": "^8.0.0",
"prettier": "3.2.4",
"prettier-plugin-jsdoc": "^1.3.0",
"resolve-tspaths": "^0.8.17",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"expo": ">=44.0.0",
"react": "*",
"react-native": "*",
"react-native-gesture-handler": ">=2.0.0",
"react-native-reanimated": "^2.0.0 || ^3.0.0"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"eslintConfig": {
"extends": [
"@react-native",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"scripts/*",
"Example/**/*",
"ExampleExpo/**/*",
"lib/**/*",
"docs/**/*",
"docusaurus/**/*"
],
"rules": {
"prefer-const": 1,
"@typescript-eslint/consistent-type-imports": 1,
"@typescript-eslint/no-non-null-assertion": 0,
"react-native/no-inline-styles": 0,
"react-native/no-single-element-style-arrays": 1,
"react-native/no-unused-styles": 1,
"react-hooks/exhaustive-deps": 0,
"react/no-unstable-nested-components": 0,
"prettier/prettier": 1,
"jsx-quotes": 0,
"curly": 0,
"no-shadow": 0,
"no-bitwise": 0,
"object-shorthand": 1
}
}
}