package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. {
  2. "name": "@compdfkit_pdf_sdk/react_native",
  3. "version": "2.1.2",
  4. "description": "ComPDFKit for React Native is a comprehensive SDK that allows you to quickly add PDF functionality to Android, iOS, and React Native applications.",
  5. "main": "./src/index.tsx",
  6. "source": "src/index",
  7. "files": [
  8. "src",
  9. "lib",
  10. "android",
  11. "ios",
  12. "cpp",
  13. "API.md",
  14. "CHANGELOG.md",
  15. "CONFIGURATION.md",
  16. "*.podspec",
  17. "!ios/build",
  18. "!android/build",
  19. "!android/gradle",
  20. "!android/gradlew",
  21. "!android/gradlew.bat",
  22. "!android/local.properties",
  23. "!**/__tests__",
  24. "!**/__fixtures__",
  25. "!**/__mocks__",
  26. "!**/.*"
  27. ],
  28. "scripts": {
  29. "example": "yarn workspace @compdfkit_pdf_sdk/react_native-example",
  30. "test": "jest",
  31. "typecheck": "tsc --noEmit",
  32. "lint": "eslint \"**/*.{js,ts,tsx}\"",
  33. "clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
  34. "prepare": "bob build",
  35. "release": "yarn prepare && release-it"
  36. },
  37. "keywords": [
  38. "react-native",
  39. "ios",
  40. "android",
  41. "pdf",
  42. "cross-platform",
  43. "pdf-viewer",
  44. "pdf-document",
  45. "pdf-editor",
  46. "compdfkit"
  47. ],
  48. "repository": {
  49. "type": "git",
  50. "url": "https://github.com/ComPDFKit/compdfkit-pdf-sdk-react-native"
  51. },
  52. "author": "ComPDFKit <youna@compdf.com> (https://github.com/ComPDFKit)",
  53. "license": "SEE LICENSE IN LICENSE",
  54. "bugs": {
  55. "url": "https://github.com/ComPDFKit/compdfkit-pdf-sdk-react-native/issues"
  56. },
  57. "homepage": "https://www.compdf.com/react-native",
  58. "devDependencies": {
  59. "@types/react": "*",
  60. "@types/react-native": "*",
  61. "react": "*",
  62. "react-native-builder-bob": "^0.20.4",
  63. "typescript": "*"
  64. },
  65. "peerDependencies": {
  66. "react": "*",
  67. "react-native": "*"
  68. },
  69. "release-it": {
  70. "git": {
  71. "commitMessage": "chore: release ${version}",
  72. "tagName": "v${version}"
  73. },
  74. "npm": {
  75. "publish": true
  76. },
  77. "github": {
  78. "release": true
  79. },
  80. "plugins": {
  81. "@release-it/conventional-changelog": {
  82. "preset": "angular"
  83. }
  84. }
  85. },
  86. "eslintIgnore": [
  87. "node_modules/",
  88. "lib/"
  89. ],
  90. "react-native-builder-bob": {
  91. "source": "src",
  92. "output": "lib",
  93. "targets": [
  94. "commonjs",
  95. "module",
  96. [
  97. "typescript",
  98. {
  99. "project": "tsconfig.build.json"
  100. }
  101. ]
  102. ]
  103. },
  104. "dependencies": {
  105. "deprecated-react-native-prop-types": "*"
  106. }
  107. }