Files
backend/libs/geo-api-client/package.json
Andriy Oblivantsev 6e2becb06a Implement geo backend, TS client, frontend, and CI tests.
Add a Go HTTP API with Ed25519 auth and invitation onboarding, user-scoped GeoJSON Point management, a Bun-tested @noble/ed25519 TypeScript client, static Vue/Vuetify frontend integration, and a Gitea CI workflow running both Go and Bun test suites.

Made-with: Cursor
2026-03-01 11:41:21 +00:00

20 lines
475 B
JSON

{
"name": "@momswap/geo-api-client",
"version": "0.1.0",
"description": "TypeScript API client for the Momswap Geo backend",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bun build src/index.ts --outdir dist --format esm --target browser",
"test": "bun test"
},
"dependencies": {
"@noble/ed25519": "latest"
},
"devDependencies": {
"typescript": "latest"
}
}