Initial monorepo setup with architecture plan

- Monorepo structure: apps/ (planner, journal) + packages/ (ui, types, map, gpx, i18n)
- Tooling: pnpm workspaces + Turborepo
- Architecture plan documenting all resolved decisions from design review
- Shared types package with Route, Activity, and Waypoint interfaces
- MIT license

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ullrich Schäfer 2026-03-22 11:29:33 +01:00
commit 5b4d072741
No known key found for this signature in database
GPG key ID: A32FF691A0F752D9
18 changed files with 1009 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{
"name": "@trails-cool/map",
"version": "0.0.1",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts"
}