UNPKG

@capacitor-community/bluetooth-le

Version:
102 lines (101 loc) 3.43 kB
{ "name": "@capacitor-community/bluetooth-le", "version": "7.1.1", "description": "Capacitor plugin for Bluetooth Low Energy ", "main": "dist/plugin.cjs.js", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "unpkg": "dist/plugin.js", "scripts": { "verify": "npm run verify:ios && npm run verify:android && npm run verify:web", "verify:ios": "set -o pipefail && cd ios && pod install && xcodebuild clean build test -workspace Plugin.xcworkspace -scheme Plugin -destination \"platform=iOS Simulator,name=iPhone 16\" | xcpretty && cd ..", "verify:android": "cd android && ./gradlew clean build test && cd ..", "verify:web": "npm run test:coverage && npm run build", "lint": "npm run eslint && npm run prettier -- --check && npm run lint:ios", "lint:ios": "npm run swiftlint -- lint ios", "lint:android": "cd android && ./gradlew clean lint && cd ..", "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- lint --fix --format ios", "eslint": "eslint . --ext ts", "prettier": "prettier \"**/*.{css,html,ts,js}\"", "swiftlint": "node-swiftlint", "docgen": "docgen --api BleClientInterface --output-readme README.md --output-json dist/docs.json", "postdocgen": "prettier README.md --write", "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs", "clean": "rimraf ./dist", "watch": "tsc --watch", "prepublishOnly": "npm run build", "test": "jest", "test:coverage": "jest --coverage", "test:watch": "jest --watch", "version:dev": "npm version --no-git-tag-version $(git describe)", "release": "standard-version", "release:minor": "standard-version -r minor", "release:major": "standard-version -r major" }, "author": "pwespi", "license": "MIT", "dependencies": { "@types/web-bluetooth": "^0.0.20" }, "devDependencies": { "@capacitor/android": "^7.0.0", "@capacitor/cli": "^7.0.0", "@capacitor/core": "^7.0.0", "@capacitor/docgen": "^0.3.0", "@capacitor/ios": "^7.0.0", "@ionic/eslint-config": "^0.4.0", "@ionic/prettier-config": "^4.0.0", "@ionic/swiftlint-config": "^2.0.0", "@types/jest": "^29.2.5", "eslint": "^8.57.0", "jest": "^29.3.1", "jest-environment-jsdom": "^29.3.1", "prettier": "^3.4.2", "rimraf": "^6.0.1", "rollup": "^4.30.1", "standard-version": "^9.5.0", "swiftlint": "^2.0.0", "ts-jest": "^29.0.3", "typescript": "~4.9.4" }, "peerDependencies": { "@capacitor/core": ">=7.0.0" }, "files": [ "android/src/main/", "android/build.gradle", "dist/", "ios/Plugin/", "CapacitorCommunityBluetoothLe.podspec" ], "keywords": [ "capacitor", "plugin", "native", "bluetooth" ], "capacitor": { "ios": { "src": "ios" }, "android": { "src": "android" } }, "prettier": "@ionic/prettier-config", "swiftlint": "@ionic/swiftlint-config", "eslintConfig": { "extends": "@ionic/eslint-config/recommended" }, "repository": { "type": "git", "url": "https://github.com/capacitor-community/bluetooth-le" }, "bugs": { "url": "https://github.com/capacitor-community/bluetooth-le/issues" }, "volta": { "node": "22.13.1", "npm": "11.0.0" } }