-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
136 lines (136 loc) · 3.81 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@vonovak/react-native-theme-control",
"version": "6.1.0",
"description": "control the platform theme from react native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build && yarn run build:plugin",
"release": "yarn prepare && npx semantic-release",
"android": "npx react-native run-android",
"start": "npx patch-package && npx react-native start --reset-cache",
"ios": "npx react-native run-ios",
"pods": "cd example && RCT_NEW_ARCH_ENABLED=1 pod-install --quiet",
"xed": "xed example/ios",
"build:plugin": "tsc --build plugin",
"clean:plugin": "expo-module clean plugin",
"docs": "typedoc --plugin typedoc-plugin-markdown"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/vonovak/react-native-theme-control",
"author": "vonovak <vonovak@gmail.com> (https://github.com/vonovak)",
"homepage": "https://www.npmjs.com/package/@vonovak/react-native-theme-control",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"@react-native-community/cli": "^15.0.0",
"@react-native-community/datetimepicker": "^8.2.0",
"@react-native-menu/menu": "^1.1.5",
"@react-native-segmented-control/segmented-control": "^2.5.5",
"@react-native/eslint-config": "^0.76.0",
"@react-native/metro-config": "^0.76.0",
"@react-navigation/native": "^6.1.18",
"@react-navigation/native-stack": "^6.11.0",
"@semantic-release/git": "^10.0.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"commitlint": "^19.3.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ft-flow": "^3.0.9",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"expo": "^51.0.8",
"expo-module-scripts": "^3.5.1",
"husky": "^4.2.5",
"jest": "^29.7.0",
"pod-install": "^0.2.2",
"prettier": "^3.2.5",
"react": "18.3.1",
"react-native": "^0.76.0",
"react-native-builder-bob": "0.27.0",
"react-native-document-picker": "^9.3.1",
"react-native-safe-area-context": "^4.12.0",
"react-native-screens": "3.35.0",
"react-native-test-app": "^3.10.18",
"semantic-release": "^19.0.3",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^4.0.3",
"typescript": "^5.6.3"
},
"peerDependencies": {
"expo": ">=49.0.0",
"react": "*",
"react-native": ">=0.72.0"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-theme-control.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"app.plugin.js",
"plugin/build"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "RNThemeControlCGen",
"type": "modules",
"jsSrcsDir": "src/spec",
"android": {
"javaPackageName": "eu.reactnativetraining"
}
}
}