-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
91 lines (91 loc) · 2.29 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
{
"name": "react-native-color-picker-ios",
"version": "0.1.3",
"description": "iOS14 Color Picker Module for React Native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-color-picker-ios.podspec",
"!lib/typescript/example",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "biome lint --write .",
"format": "biome format --write .",
"prepare": "bob build",
"release": "release-it",
"example": "yarn --cwd example"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/Naturalclar/react-native-color-picker-ios",
"author": "Jesse Katsumata <[email protected]> (https://github.com/Naturalclar)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Naturalclar/react-native-color-picker-ios/issues"
},
"homepage": "https://github.com/Naturalclar/react-native-color-picker-ios#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@react-native-community/bob": "^0.17.1",
"@release-it/conventional-changelog": "^9.0.3",
"@types/jest": "^29.1.2",
"@types/react": "^18.2.6",
"jest": "^29.6.3",
"react": "18.3.1",
"react-native": "0.76.3",
"react-native-test-app": "^4.0.4",
"release-it": "^17.2.1",
"typescript": "5.7.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"packageManager": "[email protected]+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}