-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 3.79 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 3.79 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
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
137
138
139
140
141
142
143
144
{
"name": "react-native-sheet",
"workspaces": [
"example"
],
"version": "7.6.0",
"description": "Native implementation of Bottom sheet",
"main": "src/index.tsx",
"module": "src/index",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"react-native.config.js",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"example": "npm --prefix example",
"test": "jest",
"test:e2e:ios": "detox test --configuration ios.sim.debug",
"test:e2e:android": "detox test --configuration android.emu.debug",
"test:e2e:build:ios": "detox build --configuration ios.sim.debug",
"test:e2e:build:android": "detox build --configuration android.emu.debug",
"typecheck": "tsc",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
"build": "bob build",
"release": "release-it --only-version",
"gen": "react-native codegen --platform ios && react-native codegen --platform android"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sergeymild/react-native-sheet.git"
},
"author": "SergeyMild <sergeymild@yandex.ru> (https://github.com/sergeymild)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sergeymild/react-native-sheet/issues"
},
"homepage": "https://github.com/sergeymild/react-native-sheet#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@gorhom/portal": "^1.0.14"
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@evilmartians/lefthook": "^1.12.3",
"@react-native-community/cli": "20.0.1",
"@react-native/babel-preset": "0.81.1",
"@react-native/eslint-config": "^0.81.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.14",
"@types/react": "^19.1.0",
"commitlint": "^19.8.1",
"del-cli": "^6.0.0",
"detox": "^20.45.1",
"detox-cli": "^20.0.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0",
"jest-circus": "^30.2.0",
"prettier": "^3.6.2",
"react": "19.1.0",
"react-native": "0.81.1",
"react-native-builder-bob": "^0.40.13",
"react-test-renderer": "19.1.0",
"release-it": "^19.0.4",
"turbo": "^2.5.6",
"typescript": "^5.9.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "SheetViewSpec",
"type": "all",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.sheet2"
},
"ios": {
"componentProvider": {
"SheetView": "SheetView"
}
}
},
"create-react-native-library": {
"languages": "kotlin-objc",
"type": "fabric-view",
"version": "0.54.3"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}