-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "@transistorsoft/background-geolocation-types",
"version": "5.0.2",
"type": "commonjs",
"description": "Shared TypeScript type definitions and documentation for Transistor Software's Background Geolocation SDKs (React Native, Capacitor, Cordova)",
"author": "Transistor Software <info@transistorsoft.com>",
"license": "MIT",
"homepage": "https://github.com/transistorsoft/background-geolocation",
"repository": {
"type": "git",
"url": "git+https://github.com/transistorsoft/background-geolocation.git",
"directory": "packages/background-geolocation-types"
},
"files": [
"dist",
"typedoc.json",
"tsconfig.json"
],
"keywords": [
"typescript",
"types",
"background-geolocation",
"react-native",
"capacitor",
"cordova",
"geolocation",
"transistorsoft"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"scripts": {
"clean": "rimraf dist",
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json -w",
"prepare": "pnpm run build",
"docs": "typedoc --options typedoc.json",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@types/node": "^24.10.0",
"rimraf": "^5.0.0",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.6.0"
}
}