@microbit/capacitor-community-nordic-dfu 7.0.0-microbit.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,102 @@
1
+ {
2
+ "name": "@microbit/capacitor-community-nordic-dfu",
3
+ "version": "7.0.0-microbit.1",
4
+ "description": "Nordic DFU OTA integration for Capacitor",
5
+ "main": "dist/plugin.cjs.js",
6
+ "module": "dist/esm/index.js",
7
+ "types": "dist/esm/index.d.ts",
8
+ "unpkg": "dist/plugin.js",
9
+ "files": [
10
+ "android/src/main/",
11
+ "android/build.gradle",
12
+ "dist/",
13
+ "ios/Plugin/",
14
+ "CapacitorCommunityNordicDfu.podspec"
15
+ ],
16
+ "author": "Robson Oliveira dos Santos",
17
+ "license": "MIT",
18
+ "engines": {
19
+ "node": ">=20.0.0"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/robsonos/nordic-dfu.git"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/robsonos/nordic-dfu/issues"
27
+ },
28
+ "keywords": [
29
+ "capacitor",
30
+ "plugin",
31
+ "native",
32
+ "Nordic",
33
+ "bluetooth",
34
+ "nRF",
35
+ "OTA",
36
+ "BLE"
37
+ ],
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
41
+ "scripts": {
42
+ "verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
43
+ "verify:ios": "set -o pipefail && cd ios && pod install && xcodebuild clean build test -workspace Plugin.xcworkspace -scheme Plugin -destination \"platform=iOS Simulator,name=iPhone 17\" | xcpretty && cd ..",
44
+ "verify:android": "cd android && ./gradlew clean build test && cd ..",
45
+ "verify:web": "npm run build",
46
+ "lint": "npm run eslint && npm run prettier -- --check && npm run lint:ios",
47
+ "lint:ios": "npm run swiftlint -- lint ios",
48
+ "lint:android": "cd android && ./gradlew clean lint && cd ..",
49
+ "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- lint --fix --format ios",
50
+ "eslint": "eslint . --ext ts",
51
+ "prettier": "prettier \"**/*.{css,html,ts,js}\"",
52
+ "swiftlint": "node-swiftlint",
53
+ "docgen": "docgen --api NordicDfuPlugin --output-readme README.md --output-json dist/docs.json",
54
+ "postdocgen": "prettier README.md --write",
55
+ "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
56
+ "clean": "rimraf ./dist",
57
+ "watch": "tsc --watch",
58
+ "test": "echo \"No test specified\"",
59
+ "prepare": "husky",
60
+ "prepublishOnly": "npm run build"
61
+ },
62
+ "devDependencies": {
63
+ "@capacitor/android": "^7.0.0",
64
+ "@capacitor/core": "^7.0.0",
65
+ "@capacitor/docgen": "^0.3.0",
66
+ "@capacitor/ios": "^7.0.0",
67
+ "@commitlint/cli": "^19.8.0",
68
+ "@commitlint/config-conventional": "^19.8.0",
69
+ "@ionic/eslint-config": "^0.4.0",
70
+ "@ionic/prettier-config": "^4.0.0",
71
+ "@semantic-release/changelog": "^6.0.0",
72
+ "@semantic-release/git": "^10.0.0",
73
+ "@semantic-release/npm": "^12.0.0",
74
+ "@ionic/swiftlint-config": "^2.0.0",
75
+ "eslint": "^8.57.0",
76
+ "husky": "^9.1.0",
77
+ "prettier": "^3.4.2",
78
+ "prettier-plugin-java": "^2.7.0",
79
+ "pretty-quick": "^4.0.0",
80
+ "rimraf": "^6.0.0",
81
+ "rollup": "^4.30.0",
82
+ "semantic-release": "^23.1.1",
83
+ "swiftlint": "^2.0.0",
84
+ "typescript": "~4.9.4"
85
+ },
86
+ "peerDependencies": {
87
+ "@capacitor/core": "^7.0.0"
88
+ },
89
+ "prettier": "@ionic/prettier-config",
90
+ "swiftlint": "@ionic/swiftlint-config",
91
+ "eslintConfig": {
92
+ "extends": "@ionic/eslint-config/recommended"
93
+ },
94
+ "capacitor": {
95
+ "ios": {
96
+ "src": "ios"
97
+ },
98
+ "android": {
99
+ "src": "android"
100
+ }
101
+ }
102
+ }