-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.52 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.52 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
{
"name": "react-native-document-picker-macos",
"version": "1.0.0",
"module": "./lib/module/index.js",
"main": "./lib/commonjs/index.js",
"types": "./lib/typescript/commonjs/src/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/typescript/module/src/index.d.ts",
"default": "./lib/module/index.js"
},
"require": {
"types": "./lib/typescript/commonjs/src/index.d.ts",
"default": "./lib/commonjs/index.js"
},
"source": "./src/index.ts"
},
"./package.json": "./package.json"
},
"files": [
"src",
"lib",
"macos",
"*.podspec"
],
"workspaces": [
"example"
],
"scripts": {
"build": "bob build",
"prepack": "yarn build",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@react-native-community/eslint-config": "patch:@react-native-community/eslint-config@npm%3A3.2.0#~/.yarn/patches/@react-native-community-eslint-config-npm-3.2.0-d7fa7cb395.patch",
"@react-native/babel-preset": "0.78.3",
"@types/react": "~19.0.14",
"dprint": "^0.50.1",
"eslint": "^8.57.1",
"react": "19.0.0",
"react-native": "0.78.3",
"react-native-builder-bob": "~0.40.12",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-macos": "*"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true
}
],
[
"commonjs",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.json"
}
]
]
},
"codegenConfig": {
"name": "RNDocumentPickerSpec",
"type": "modules",
"jsSrcsDir": "./src/specs"
},
"engines": {
"node": ">= 22.0.0"
},
"packageManager": "[email protected]+sha512.1fc009bc09d13cfd0e19efa44cbfc2b9cf6ca61482725eb35bbc5e257e093ebf4130db6dfe15d604ff4b79efd8e1e8e99b25fa7d0a6197c9f9826358d4d65c3c",
"description": "macOS document picker",
"keywords": [
"react-native",
"react-native-macos"
],
"homepage": "https://github.com/victorhenrion/react-native-document-picker-macos#readme",
"bugs": {
"url": "https://github.com/victorhenrion/react-native-document-picker-macos/issues"
},
"repository": "github:victorhenrion/react-native-document-picker-macos",
"license": "MIT",
"author": "Victor Henrion <[email protected]> (https://github.com/victorhenrion)"
}