@flomentumsolutions/capacitor-health-extended 0.0.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,85 @@
1
+ {
2
+ "name": "@flomentumsolutions/capacitor-health-extended",
3
+ "version": "0.0.1",
4
+ "description": "Capacitor plugin for Apple HealthKit and Google Health Connect Platform",
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/Sources",
14
+ "ios/Tests",
15
+ "Package.swift",
16
+ "CapacitorHealthExtended.podspec"
17
+ ],
18
+ "author": "Flomentum Solutions, LLC",
19
+ "license": "MIT",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/Flomentum-Solutions/capacitor-health-extended.git"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/Flomentum-Solutions/capacitor-health-extended/issues"
26
+ },
27
+ "keywords": [
28
+ "capacitor",
29
+ "plugin",
30
+ "native",
31
+ "health",
32
+ "healthkit",
33
+ "healthconnect",
34
+ "exercise",
35
+ "biometrics"
36
+ ],
37
+ "scripts": {
38
+ "verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
39
+ "verify:ios": "xcodebuild -scheme CapacitorHealthExtended -destination generic/platform=iOS",
40
+ "verify:android": "cd android && ./gradlew clean build test && cd ..",
41
+ "verify:web": "npm run build",
42
+ "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
43
+ "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
44
+ "eslint": "eslint . --ext ts",
45
+ "prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
46
+ "swiftlint": "node-swiftlint",
47
+ "docgen": "docgen --api HealthPlugin --output-readme README.md --output-json dist/docs.json",
48
+ "build": "npm run clean && tsc && rollup -c rollup.config.js",
49
+ "clean": "rimraf ./dist",
50
+ "watch": "tsc --watch",
51
+ "prepublishOnly": "npm run build"
52
+ },
53
+ "devDependencies": {
54
+ "@capacitor/android": "^6.0.0",
55
+ "@capacitor/core": "^6.2.1",
56
+ "@capacitor/docgen": "^0.2.2",
57
+ "@capacitor/ios": "^6.0.0",
58
+ "@ionic/eslint-config": "^0.4.0",
59
+ "@ionic/prettier-config": "^4.0.0",
60
+ "@ionic/swiftlint-config": "^1.1.2",
61
+ "eslint": "^8.57.0",
62
+ "prettier": "^3.3.3",
63
+ "prettier-plugin-java": "^2.6.4",
64
+ "rimraf": "^3.0.2",
65
+ "rollup": "^2.32.0",
66
+ "swiftlint": "^1.0.1",
67
+ "typescript": "~4.1.5"
68
+ },
69
+ "peerDependencies": {
70
+ "@capacitor/core": "^6.0.0"
71
+ },
72
+ "prettier": "@ionic/prettier-config",
73
+ "swiftlint": "@ionic/swiftlint-config",
74
+ "eslintConfig": {
75
+ "extends": "@ionic/eslint-config/recommended"
76
+ },
77
+ "capacitor": {
78
+ "ios": {
79
+ "src": "ios"
80
+ },
81
+ "android": {
82
+ "src": "android"
83
+ }
84
+ }
85
+ }