react-native-crisp-chat-sdk
Version:
React-Native bridge for Crisp chat iOS and Android SDK
174 lines (173 loc) • 4.55 kB
JSON
{
"name": "react-native-crisp-chat-sdk",
"version": "0.23.1",
"description": "React-Native bridge for Crisp chat iOS and Android SDK",
"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",
"react-native-crisp-chat-sdk.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"plugin/build",
"app.plugin.js"
],
"scripts": {
"example": "yarn workspace react-native-crisp-chat-sdk-example",
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"test:plugin": "expo-module test plugin",
"build:plugin": "tsc --build plugin",
"lint:plugin": "eslint plugin/src/*",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
"prepare": "yarn build:plugin && bob build",
"release": "release-it"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/walterholohan/react-native-crisp-chat-sdk",
"author": "Walter Holohan <walter.holohan@gmail.com> (https://github.com/walterholohan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/walterholohan/react-native-crisp-chat-sdk/issues"
},
"homepage": "https://github.com/walterholohan/react-native-crisp-chat-sdk#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.8.1",
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@evilmartians/lefthook": "^1.12.3",
"@expo/config-plugins": "^9.0.0",
"@react-native-community/cli": "20.0.1",
"@react-native/babel-preset": "0.81.1",
"@react-native/eslint-config": "^0.81.1",
"@release-it/conventional-changelog": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/react": "^19.1.0",
"auto-changelog": "^2.2.0",
"commitlint": "^19.8.1",
"del-cli": "^6.0.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.1.0",
"eslint-plugin-prettier": "^5.5.4",
"expo-module-scripts": "^3.4.1",
"husky": "^4.2.5",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"react": "19.1.0",
"react-native": "0.81.1",
"react-native-builder-bob": "^0.40.14",
"release-it": "^19.0.4",
"turbo": "^2.5.6",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@expo/config-plugins": "*",
"@types/react": "*",
"expo": "*",
"react": "*",
"react-native": "*"
},
"workspaces": [
"example"
],
"packageManager": "yarn@3.6.1",
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/",
"fixtures"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typecheck"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"hooks": {
"after:bump": "npx auto-changelog -p"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "NativeCrispModuleSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.reactnativecrispchatsdk"
}
},
"create-react-native-library": {
"languages": "kotlin-objc",
"type": "turbo-module",
"version": "0.54.8"
}
}