-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.58 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@hyoper/rn-location",
"version": "1.0.0",
"description": "A high-performance react-native library for foreground and background location tracking.",
"author": "hyoper <tolcelik11@gmail.com> (https://github.com/hyoper)",
"homepage": "https://github.com/hyoper/react-native-location",
"repository": {
"type": "git",
"url": "https://github.com/hyoper/react-native-location"
},
"license": "MIT",
"main": "lib/module/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"source": "src/index",
"react-native": "src/index",
"files": [
"src",
"lib",
"android",
"!android/build",
"ios",
"!ios/build",
"RNLocation.podspec",
"app.plugin.js",
"app.plugin.utils.js"
],
"keywords": [
"react",
"react-native",
"android",
"ios",
"location",
"location-tracking",
"gps",
"permission",
"typescript"
],
"scripts": {
"prepare": "bob build",
"test:ts": "tsc --noEmit",
"test:lint": "eslint --ext ts,tsx src/",
"build": "bob build",
"build:clean": "del-cli lib",
"docs": "typedoc",
"docs:clean": "del-cli docs",
"docs:deploy": "gh-pages -d docs -b docs",
"release": "npm publish --access public",
"prepublishOnly": "npm run build:clean && npm run build",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/runtime": "^7.25.0",
"@expo/config-plugins": "^54.0.3",
"@react-native/babel-preset": "0.79.6",
"@react-native/eslint-config": "0.79.6",
"@react-native/metro-config": "0.79.6",
"@react-native/typescript-config": "0.79.6",
"@types/react": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"del-cli": "^7.0.0",
"eslint": "^8.19.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^6.3.0",
"prettier": "2.8.8",
"react": "19.0.0",
"react-native": "0.79.6",
"react-native-builder-bob": "~0.39.1",
"typedoc": "^0.28.13",
"typescript": "5.0.4"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.75.0"
},
"codegenConfig": {
"name": "RNLocationSpec",
"type": "modules",
"jsSrcsDir": "./src/specs",
"android": {
"javaPackageName": "com.hyoper.location"
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"module",
"typescript"
]
}
}