-
-
Notifications
You must be signed in to change notification settings - Fork 442
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "react-native-documents",
"description": "A react native interface to access documents from dropbox, google drive, iCloud...",
"scripts": {
"build": "yarn workspaces foreach -A -p run prepare",
"test": "SILENCE_MOCK_NOT_FOUND=1 jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"manypkg-fix": "manypkg fix",
"prettier:write": "prettier --write '**/*.{js,ts,tsx}' '**/*.{md,mdx}'",
"prettier:check": "prettier --list-different '**/*.{js,ts,tsx}' '**/*.{md,mdx}'",
"version": "changeset version",
"release": "changeset publish",
"release-packages": "yarn build && changeset publish"
},
"workspaces": [
"packages/*"
],
"keywords": [
"react-native",
"document picker",
"document viewer",
"uidocumentmenuviewcontroller",
"dropbox",
"google-drive",
"icloud"
],
"author": "Vojtech Novak ([email protected])",
"license": "see LICENSE file",
"bugs": {
"url": "https://github.com/react-native-documents/document-picker/issues"
},
"repository": "https://github.com/react-native-documents/document-picker",
"homepage": "https://github.com/react-native-documents/document-picker#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 19.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@changesets/cli": "^2.27.12",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@evilmartians/lefthook": "^1.10.10",
"@jest/globals": "^29.7.0",
"@manypkg/cli": "^0.21.4",
"@react-native/eslint-config": "^0.77.0",
"@types/jest": "^29.5.14",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"pod-install": "^0.3.4",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]"
}