-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "mappit-monorepo",
"version": "0.1.0",
"private": true,
"description": "Open-source toolkit to load, filter, and visualize Google Location History data from Google Takeout — desktop app (Electron) and CLI",
"keywords": [
"google-location-history",
"google-takeout",
"location-history-viewer",
"google-maps-timeline",
"gps-visualization",
"geolocation",
"google-timeline",
"location-data",
"electron",
"kml-export",
"privacy",
"map-visualization",
"deck-gl",
"maplibre"
],
"repository": {
"type": "git",
"url": "https://github.com/ronzim/mappit-core.git"
},
"homepage": "https://github.com/ronzim/mappit-core#readme",
"bugs": {
"url": "https://github.com/ronzim/mappit-core/issues"
},
"license": "MIT",
"author": "ronzim",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "eslint packages/*/src",
"format": "prettier --write \"packages/*/src/**/*.ts\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}