package.json 2.3 KB

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