UNPKG

react-native-code-push-diff

Version:

This library builds upon the foundational strengths of the react-native-code-push library, adding advanced functionality to precisely identify and manage differences between code-push builds.

161 lines (160 loc) 3.96 kB
{ "name": "react-native-code-push-diff", "version": "1.3.0", "description": "This library builds upon the foundational strengths of the react-native-code-push library, adding advanced functionality to precisely identify and manage differences between code-push builds.", "main": "commonjs/react-native/index.js", "module": "module/react-native/index.js", "types": "typescript/src/react-native/index.d.ts", "react-native": "src/react-native/index.ts", "source": "src/react-native", "files": [ "bundle", "setup", "bundle_config.json", "src", "module", "commonjs", "typescript", "android", "ios", "cpp", "*.podspec", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "example": "yarn workspace react-native-code-push-diff-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 typescript module commonjs package", "prepare": "bob build", "release": "release-it" }, "bin": { "code-push-diff": "./commonjs/cli/index.js" }, "keywords": [ "react-native", "ios", "android" ], "repository": { "type": "git", "url": "git+https://github.com/sweatco/react-native-code-push-diff.git" }, "author": "Ivan Kuchaev <gregoreygonza@gmail.com> (https://github.com/Augustach)", "license": "MIT", "bugs": { "url": "https://github.com/sweatco/react-native-code-push-diff/issues" }, "homepage": "https://github.com/sweatco/react-native-code-push-diff#readme", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@commitlint/config-conventional": "^17.0.2", "@evilmartians/lefthook": "^1.5.0", "@react-native/eslint-config": "^0.72.2", "@release-it/conventional-changelog": "^5.0.0", "@types/jest": "^28.1.2", "@types/react": "~17.0.21", "@types/react-native": "0.70.0", "commitlint": "^17.0.2", "del-cli": "^5.0.0", "eslint": "^8.4.1", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.0.0", "jest": "^28.1.1", "pod-install": "^0.1.0", "prettier": "^2.0.5", "react": "18.3.1", "react-native": "0.75.4", "react-native-builder-bob": "^0.30.2", "release-it": "^17.10.0", "turbo": "^1.10.7", "typescript": "^5.0.2" }, "resolutions": { "@types/react": "17.0.21" }, "peerDependencies": { "react": "*", "react-native": "*" }, "packageManager": "yarn@3.6.1", "engines": { "node": ">= 18.0.0" }, "jest": { "preset": "react-native", "modulePathIgnorePatterns": [ "<rootDir>/example/node_modules", "<rootDir>/lib/" ] }, "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" } } }, "eslintConfig": { "root": true, "extends": [ "@react-native", "prettier" ], "rules": { "prettier/prettier": "error" } }, "react-native-builder-bob": { "source": "src", "output": "./", "targets": [ "commonjs", "module", [ "typescript", { "project": "tsconfig.build.json" } ] ] }, "dependencies": { "gradle-to-js": "2.0.1", "plist": "^3.0.6", "semver": "^7.5.3", "xcode": "^3.0.1", "yargs": "^17.7.2" } }