-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
77 lines (77 loc) · 2.46 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-native-pspdfkit",
"version": "2.14.0",
"description": "React Native PDF Library by PSPDFKit",
"keywords": [
"react native",
"pspdfkit",
"pdf"
],
"homepage": "https://github.com/PSPDFKit/react-native",
"bugs": {
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/PSPDFKit/react-native.git"
},
"types": "types/index.d.ts",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"format": "prettier \"{samples/**/*.{md,js},*.{md,js}}\" --write",
"lint": "npx eslint --ext *.js",
"docs": "rm -rf jsdoc && jsdoc -c jsdoc.json",
"postdocs": "node types-scripts/fix-code-tags.js",
"generate-types": "npx -p typescript tsc --build tsconfig-types.json",
"append": "node types-scripts/append.js",
"build": "npx -p typescript tsc --build tsconfig.json",
"build-and-generate-types": "rm -rf types lib && npm run build && npm run generate-types && npm run append",
"copy-types-and-lib": "cd samples/Catalog/node_modules/react-native-pspdfkit && rm -rf index.js lib src types && cd ../../../../ && cp -rf index.js lib src types samples/Catalog/node_modules/react-native-pspdfkit/",
"dev-build": "npm run build-and-generate-types && npm run docs && npm run copy-types-and-lib"
},
"peerDependencies": {
"@types/react": "^18.2.28",
"prop-types": "^15.8.1",
"react": ">=17.0.0",
"react-native": ">=0.66.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.21.8",
"@babel/runtime": "^7.22.3",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.72.11",
"@tsconfig/react-native": "^3.0.0",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.5.0",
"eslint": "^8.41.0",
"eslint-plugin-ft-flow": "^2.0.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"jsdoc": "^4.0.2",
"metro-react-native-babel-preset": "0.76.8",
"prettier": "^2.8.8",
"react-native-codegen": "^0.71.5",
"react-test-renderer": "18.2.0",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=16"
},
"files": [
"ios/",
"android/",
"lib/",
"src/",
"types/",
"windows/",
"babel.config.js",
"index.js",
"react-native-pspdfkit.podspec",
"tsconfig-types.json",
"tsconfig.json",
"package.json",
"License-Evaluation.pdf"
]
}