Files
react-native-bpl-scale/package.json
Gokulvarthan Ramesh d96af7e4fa
Some checks failed
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / build-library (push) Has been cancelled
CI / build-android (push) Has been cancelled
CI / build-ios (push) Has been cancelled
Add BLE BPL scale native module and BMI integration
2025-12-17 11:26:41 +05:30

100 lines
2.0 KiB
JSON

{
"name": "react-native-bpl-scale",
"version": "0.1.0",
"description": "React Native Bluetooth BPL weighing scale library",
"main": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"react-native.config.js",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"example": "npm --prefix example run android",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
"prepare": "bob build",
"typecheck": "tsc"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "/issues"
},
"homepage": "#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@react-native/babel-preset": "0.83.0",
"@types/react": "^19.2.0",
"del-cli": "^6.0.0",
"react": "19.2.0",
"react-native": "0.83.0",
"react-native-builder-bob": "^0.40.13",
"typescript": "^5.9.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"workspaces": [
"example"
],
"packageManager": "yarn@4.11.0",
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "BplScaleSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.bplscale"
}
},
"create-react-native-library": {
"type": "turbo-module",
"languages": "kotlin-objc",
"tools": [],
"version": "0.56.0"
}
}