-
-
Notifications
You must be signed in to change notification settings - Fork 463
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.93 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.93 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
{
"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/*",
"example"
],
"keywords": [
"react-native",
"document picker",
"document viewer",
"uidocumentmenuviewcontroller",
"dropbox",
"google-drive",
"icloud"
],
"author": "Vojtech Novak (hello@react-native-training.eu)",
"license": "MIT",
"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.29.7",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@evilmartians/lefthook": "^1.13.0",
"@jest/globals": "^29.7.0",
"@manypkg/cli": "^0.25.1",
"@react-native/eslint-config": "^0.81.4",
"@types/jest": "^29.5.14",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0",
"pod-install": "1.0.7",
"prettier": "^3.6.2",
"typescript": "^5.7.3"
},
"packageManager": "yarn@4.12.0"
}