react-native-zendesk-messaging
Version:
Zendesk messaging SDK for React Native
167 lines (166 loc) • 3.94 kB
JSON
{
"name": "react-native-zendesk-messaging",
"version": "0.3.2",
"description": "Zendesk messaging SDK for React Native",
"workspaces": [
"examples/*"
],
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"!lib/typescript/example",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"lint:kotlin": "cd android; ktlint",
"lint:swift": "cd ios; swiftlint",
"prepack": "bob build",
"release": "release-it",
"example": "yarn --cwd example",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build"
},
"keywords": [
"react-native",
"ios",
"android",
"zendesk"
],
"repository": "https://github.com/leegeunhyeok/react-native-zendesk-messaging",
"author": "leegeunhyeok <dev.ghlee@gmail.com> (https://github.com/leegeunhyeok)",
"license": "MIT",
"bugs": {
"url": "https://github.com/leegeunhyeok/react-native-zendesk-messaging/issues"
},
"homepage": "https://github.com/leegeunhyeok/react-native-zendesk-messaging#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.7.0",
"@evilmartians/lefthook": "^1.5.0",
"@faker-js/faker": "^8.1.0",
"@react-native-community/eslint-config": "^3.0.2",
"@release-it/conventional-changelog": "^10.0.0",
"@types/jest": "^29.5.5",
"@types/node": "^22",
"@types/react": "~18.2.23",
"@types/react-native": "0.72.3",
"@vercel/style-guide": "^5.0.1",
"commitlint": "^17.7.2",
"conventional-changelog-angular": "^8.0.0",
"del-cli": "^5.1.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"pod-install": "^0.1.39",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-native": "0.70.6",
"react-native-builder-bob": "^0.23.0",
"release-it": "^16.2.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"engines": {
"node": ">= 18.0.0"
},
"sdkVersions": {
"android": "2.13.0",
"ios": "2.13.0"
},
"packageManager": "yarn@4.6.0",
"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": {
"name": "angular"
}
}
}
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}