|
1 | 1 | { |
2 | | - "name": "@capacitor/google-maps", |
3 | | - "version": "7.0.2", |
4 | | - "description": "Google maps on Capacitor", |
| 2 | + "name": "@capacitor/typicalplugin", |
| 3 | + "version": "7.0.1", |
| 4 | + "description": "Does some things", |
5 | 5 | "main": "dist/plugin.cjs.js", |
6 | 6 | "module": "dist/esm/index.js", |
7 | | - "typings": "dist/typings/index.d.ts", |
8 | | - "typesVersions": { |
9 | | - "<4.1": { |
10 | | - "dist/typings/index.d.ts": [ |
11 | | - "dist/typings/ts_old/index.d.ts" |
12 | | - ] |
13 | | - } |
14 | | - }, |
| 7 | + "types": "dist/esm/index.d.ts", |
15 | 8 | "unpkg": "dist/plugin.js", |
16 | 9 | "files": [ |
17 | 10 | "android/src/main/", |
18 | 11 | "android/build.gradle", |
19 | 12 | "dist/", |
20 | 13 | "ios/Plugin/", |
21 | | - "CapacitorGoogleMaps.podspec" |
| 14 | + "Typical.podspec" |
22 | 15 | ], |
23 | 16 | "author": "Ionic <hi@ionicframework.com>", |
24 | 17 | "license": "MIT", |
25 | 18 | "repository": { |
26 | 19 | "type": "git", |
27 | | - "url": "git+https://github.com/ionic-team/capacitor-google-maps.git" |
| 20 | + "url": "git+https://github.com/ionic-team/capacitor-plugins.git" |
28 | 21 | }, |
29 | 22 | "bugs": { |
30 | | - "url": "https://github.com/ionic-team/capacitor-google-maps/issues" |
| 23 | + "url": "https://github.com/ionic-team/capacitor-plugins/issues" |
31 | 24 | }, |
32 | 25 | "keywords": [ |
33 | 26 | "capacitor", |
34 | 27 | "plugin", |
35 | | - "native", |
36 | | - "google-maps" |
| 28 | + "native" |
37 | 29 | ], |
38 | 30 | "scripts": { |
39 | | - "verify": "pnpm run verify:ios && pnpm run verify:android && pnpm run verify:web", |
| 31 | + "verify": "npm run verify:ios && npm run verify:android && npm run verify:web", |
40 | 32 | "verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin -sdk iphonesimulator && cd ..", |
41 | 33 | "verify:android": "cd android && ./gradlew clean build test && cd ..", |
42 | | - "verify:web": "pnpm run build", |
43 | | - "lint": "pnpm eslint . --ext ts && pnpm prettier \"./**/*.{css,html,ts,js,java}\" --check && pnpm node-swiftlint lint", |
44 | | - "fmt": "pnpm eslint . --ext ts --fix && pnpm prettier \"./**/*.{css,html,ts,js,java}\" --write && pnpm node-swiftlint --fix --format", |
45 | | - "docgen": "docgen --api GoogleMapInterface --output-readme README.md --output-json dist/docs.json", |
46 | | - "build": "pnpm run clean && pnpm run docgen && tsc && rollup -c rollup.config.js && pnpm run downleveldts", |
| 34 | + "verify:web": "npm run build", |
| 35 | + "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint", |
| 36 | + "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format", |
| 37 | + "eslint": "eslint . --ext ts", |
| 38 | + "prettier": "prettier \"**/*.{css,html,ts,js,java}\"", |
| 39 | + "swiftlint": "node-swiftlint", |
| 40 | + "docgen": "docgen --api TypicalPlugin --output-readme README.md --output-json dist/docs.json", |
| 41 | + "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs", |
47 | 42 | "clean": "rimraf ./dist", |
48 | 43 | "watch": "tsc --watch", |
49 | | - "prepublishOnly": "pnpm run build", |
50 | | - "publish:cocoapod": "pod trunk push ./CapacitorGoogleMaps.podspec --allow-warnings", |
51 | | - "downleveldts": "pnpm downlevel-dts dist/typings dist/typings/ts_old --to=3.5", |
52 | | - "pack-local": "pnpm run build && pnpm pack && find . -name 'capacitor-google-maps-*tgz' -exec bash -c 'mv $0 capacitor-google-maps.tgz' {} \\; ", |
53 | | - "unittest:ios": "xcodebuild test -project ./unit-tests/ios/GoogleMapsPlugin/GoogleMapsPlugin.xcodeproj -scheme TestApp -destination 'platform=iOS Simulator,name=iPhone 12,OS=15.2' | xcpretty && exit ${PIPESTATUS[0]}", |
54 | | - "unittest:android": "cd ./unit-tests/android && ./gradlew testDebugUnitTest" |
| 44 | + "prepublishOnly": "npm run build", |
| 45 | + "publish:cocoapod": "pod trunk push ./Typical.podspec --allow-warnings" |
55 | 46 | }, |
56 | 47 | "devDependencies": { |
57 | 48 | "@capacitor/android": "next", |
| 49 | + "@capacitor/cli": "^6.0.0", |
58 | 50 | "@capacitor/core": "next", |
59 | | - "@capacitor/docgen": "0.3.0", |
| 51 | + "@capacitor/docgen": "0.2.2", |
60 | 52 | "@capacitor/ios": "next", |
61 | | - "@ionic/prettier-config": "^1.0.1", |
62 | | - "@types/resize-observer-browser": "^0.1.7", |
63 | | - "@types/supercluster": "^7.1.0", |
64 | | - "@typescript-eslint/eslint-plugin": "^5.59.2", |
65 | | - "@typescript-eslint/parser": "^5.59.2", |
66 | | - "downlevel-dts": "^0.7.0", |
| 53 | + "@ionic/eslint-config": "^0.4.0", |
| 54 | + "@ionic/prettier-config": "~1.0.1", |
| 55 | + "@ionic/swiftlint-config": "^1.1.2", |
67 | 56 | "eslint": "^8.57.0", |
68 | | - "eslint-config-prettier": "^8.8.0", |
69 | | - "eslint-plugin-import": "^2.25.4", |
70 | | - "prettier": "^2.8.8", |
71 | | - "prettier-plugin-java": "~2.1.0", |
72 | | - "rimraf": "^3.0.2", |
73 | | - "rollup": "^2.78.1", |
74 | | - "swiftlint": "^1.0.2", |
75 | | - "typescript": "^5.4.2" |
| 57 | + "prettier": "~2.3.0", |
| 58 | + "prettier-plugin-java": "~1.0.2", |
| 59 | + "rimraf": "^6.0.1", |
| 60 | + "rollup": "^4.26.0", |
| 61 | + "swiftlint": "^1.0.1", |
| 62 | + "typescript": "~4.1.5" |
76 | 63 | }, |
77 | 64 | "peerDependencies": { |
78 | 65 | "@capacitor/core": ">=7.0.0" |
79 | 66 | }, |
| 67 | + "prettier": "@ionic/prettier-config", |
| 68 | + "swiftlint": "@ionic/swiftlint-config", |
| 69 | + "eslintConfig": { |
| 70 | + "extends": "@ionic/eslint-config/recommended" |
| 71 | + }, |
80 | 72 | "capacitor": { |
81 | 73 | "ios": { |
82 | 74 | "src": "ios" |
|
87 | 79 | }, |
88 | 80 | "publishConfig": { |
89 | 81 | "access": "public" |
90 | | - }, |
91 | | - "dependencies": { |
92 | | - "@googlemaps/js-api-loader": "~1.16.8", |
93 | | - "@googlemaps/markerclusterer": "~2.5.3", |
94 | | - "@types/google.maps": "~3.58.1" |
95 | 82 | } |
96 | 83 | } |
0 commit comments