-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 KB
/
package.json
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
53
{
"name": "capacitor-radar",
"version": "3.15.0",
"description": "Capacitor plugin for Radar, the leading geofencing and location tracking platform",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "npm run clean && ./node_modules/typescript/bin/tsc",
"clean": "rm -rf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"author": "Radar Labs, Inc.",
"homepage": "https://radar.com",
"license": "Apache-2.0",
"dependencies": {
"@capacitor/core": "^4.0.0",
"radar-sdk-js": "^3.7.1"
},
"devDependencies": {
"@capacitor/android": "^4.0.0",
"@capacitor/cli": "^4.0.0",
"@capacitor/ios": "^4.0.0",
"typescript": "^5.1.3"
},
"files": [
"android/src/main/",
"android/build.gradle",
"dist/",
"ios/Plugin/",
"CapacitorRadar.podspec"
],
"keywords": [
"capacitor",
"plugin",
"native"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"repository": {
"type": "git",
"url": "radarlabs/capacitor-radar"
},
"bugs": {
"url": "https://github.com/radarlabs/capacitor-radar/issues"
}
}