123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- {
- "name": "react-native-compdfkit-pdf",
- "version": "2.0.1",
- "description": "ComPDFKit for React Native is a comprehensive SDK that allows you to quickly add PDF functionality to Android and iOS React Native applications.",
- "main": "lib/commonjs/index",
- "module": "lib/module/index",
- "types": "lib/typescript/src/index.d.ts",
- "react-native": "src/index",
- "source": "src/index",
- "scripts": {
- "example": "yarn workspace react-native-compdfkit-pdf-example",
- "test": "jest",
- "typecheck": "tsc --noEmit",
- "lint": "eslint \"**/*.{js,ts,tsx}\"",
- "clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
- "prepare": "bob build",
- "release": "release-it"
- },
- "keywords": [
- "react-native",
- "ios",
- "android",
- "pdf",
- "cross-platform",
- "pdf-viewer",
- "pdf-document",
- "pdf-editor",
- "compdfkit"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/ComPDFKit/compdfkit-pdf-sdk-react-native"
- },
- "author": "ComPDFKit <youna@compdf.com> (https://github.com/ComPDFKit)",
- "license": "SEE LICENSE IN LICENSE",
- "bugs": {
- "url": "https://www.compdf.com/support"
- },
- "homepage": "https://www.compdf.com/",
- "publishConfig": {
- "registry": "https://registry.npmjs.org/"
- },
- "devDependencies": {
- "@types/react": "*",
- "@types/react-native": "*",
- "pod-install": "*",
- "react": "*",
- "react-native": "*",
- "react-native-builder-bob": "*",
- "release-it": "*",
- "typescript": "*"
- },
- "resolutions": {
- "@types/react": "*"
- },
- "peerDependencies": {
- "react": "*",
- "react-native": "*"
- },
- "workspaces": [
- "example"
- ],
- "commitlint": {
- "extends": [
- "@commitlint/config-conventional"
- ]
- },
- "release-it": {
- "git": {
- "commitMessage": "chore: release ${version}",
- "tagName": "v${version}"
- },
- "npm": {
- "publish": true
- },
- "github": {
- "release": true
- },
- "plugins": {
- "@release-it/conventional-changelog": {
- "preset": "angular"
- }
- }
- },
- "react-native-builder-bob": {
- "source": "src",
- "output": "lib",
- "targets": [
- "commonjs",
- "module",
- [
- "typescript",
- {
- "project": "tsconfig.build.json"
- }
- ]
- ]
- }
- }
|