forked from paufau/react-native-multiple-modals
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.71 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.71 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
{
"name": "react-native-multiple-modals",
"version": "3.2.3",
"description": "Native implementation with the ability to display multiple Modals",
"author": "Pavel Pakseev <pakseev.1999@gmail.com> (https://github.com/paufau)",
"license": "MIT",
"homepage": "https://github.com/paufau/react-native-multiple-modals#readme",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"codegenConfig": {
"name": "multiplemodals",
"type": "all",
"jsSrcsDir": "./src/newarch/",
"android": {
"javaPackageName": "com.multiplemodals"
},
"ios": {
"componentProvider": {
"RNTModalView": "RNTModalViewComponentView"
}
}
},
"keywords": [
"react-native",
"multiple",
"modals",
"simultaneously",
"ios",
"modal",
"dialog",
"android"
],
"repository": {
"type": "git",
"url": "https://github.com/paufau/react-native-multiple-modals"
},
"bugs": {
"url": "https://github.com/paufau/react-native-multiple-modals/issues"
},
"scripts": {
"lint": "npx eslint ./src",
"typecheck": "npx tsc --noEmit",
"build": "npx bob build",
"release": "npm run build && npm publish",
"release:nightly": "npm run build && npm publish --tag nightly",
"promote:nightly": "./scripts/nightly-to-latest.sh",
"prepare": "husky"
},
"files": [
"src",
"lib",
"common",
"android",
"ios",
"react-native.config.js",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/.gradle",
"!android/.idea",
"!android/local.properties",
"!android/gradlew",
"!android/gradlew.bat",
"!**/__tests__",
"!**/__mocks__",
"!**/.*",
"!.git",
"!.yarn"
],
"devDependencies": {
"@swc/core": "^1.7.36",
"@types/react": "^19.1.14",
"@types/react-dom": "^19.1.9",
"@types/react-native-web": "^0.19.2",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"react-dom": "^19.1.1",
"react-native-builder-bob": "^0.40.13"
},
"peerDependencies": {
"@react-native/virtualized-lists": ">=0.75.4",
"react": ">=18",
"react-dom": ">=18",
"react-native": ">=0.71.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}