-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.27 KB
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
{
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"typescript": "tsc --noEmit",
"lint:js": "eslint \"**/*.{js,ts,tsx}\" && prettier --config .prettierrc.js \"packages/**/*.{js,ts,tsx}\"",
"lint:android": "./packages/react-native-avoid-softinput/android/gradlew -p packages/react-native-avoid-softinput/android spotlessCheck --quiet",
"lint:ios:objc": "./scripts/clang-format.sh lint",
"format:js": "eslint \"**/*.{js,ts,tsx}\" --fix --quiet && prettier -w --config .prettierrc.js \"packages/**/*.{js,ts,tsx}\"",
"format:android": "./packages/react-native-avoid-softinput/android/gradlew -p packages/react-native-avoid-softinput/android spotlessApply",
"format:ios:objc": "./scripts/clang-format.sh format",
"prepare": "yarn workspace react-native-avoid-softinput build-library",
"release": "yarn workspace react-native-avoid-softinput release-library",
"release:pre-release": "yarn release --preRelease=rc",
"release:major": "yarn release --increment=major",
"release:minor": "yarn release --increment=minor",
"release:patch": "yarn release --increment=patch",
"reset": "yarn reset:node_modules && yarn reset:pods",
"reset:node_modules": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock",
"reset:pods": "find . -type dir -name Pods | xargs rm -rf && find . -type f -name Podfile.lock | xargs rm -rf"
},
"repository": "https://github.com/mateusz1913/react-native-avoid-softinput",
"author": "Mateusz Mędrek <luigimario1913@gmail.com> (https://github.com/mateusz1913)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mateusz1913/react-native-avoid-softinput/issues"
},
"homepage": "https://github.com/mateusz1913/react-native-avoid-softinput#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@callstack/eslint-config": "15.0.0",
"@commitlint/config-conventional": "^21.0.1",
"@evilmartians/lefthook": "^2.1.6",
"commitlint": "^21.0.1",
"eslint": "^9.29.0",
"jest": "^30.4.2",
"pod-install": "^1.0.18",
"prettier": "^3.8.3",
"typescript": "~5.9.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "yarn@4.6.0"
}