-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@socialmedialabs/capacitor-native-geocoder",
"version": "1.0.2",
"description": "Native geocoding for Capacitor 7 (SDK 34-ready)",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"CapacitorNativeGeocoder.podspec",
"CHANGELOG.md",
"dist",
"src",
"ios",
"android/src",
"android/gradle",
"android/build.gradle.kts",
"android/settings.gradle.kts",
"android/gradle.properties",
"android/consumer-rules.pro",
"android/capacitor.settings.gradle",
"android/gradlew",
"android/gradlew.bat",
"LICENSE",
"README.md",
"rollup.config.mjs",
"tsconfig.json"
],
"scripts": {
"clean": "node -e \"try{require('fs').rmSync('dist',{recursive:true,force:true});}catch(_){}\"",
"build": "npm run clean && tsc && rollup -c rollup.config.mjs",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@capacitor/core": "^7.0.0"
},
"devDependencies": {
"typescript": "^5.5.0",
"rollup": "^4.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-typescript": "^11.1.6"
},
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"license": "MIT"
}