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
This commit is contained in:
+55
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"name": "@noble/ed25519",
|
||||
"version": "3.0.0",
|
||||
"description": "Fastest 5KB JS implementation of ed25519 EDDSA signatures compliant with RFC8032, FIPS 186-5 & ZIP215",
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts",
|
||||
"index.ts"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@noble/hashes": "2.0.0",
|
||||
"@paulmillr/jsbt": "0.4.4",
|
||||
"@types/node": "24.2.1",
|
||||
"fast-check": "4.2.0",
|
||||
"prettier": "3.6.2",
|
||||
"typescript": "5.9.2"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"build:release": "npx --no @paulmillr/jsbt esbuild test/build",
|
||||
"bench": "node test/benchmark.ts",
|
||||
"format": "prettier --write 'index.ts' 'test/**/*.{js,ts}'",
|
||||
"test": "node --experimental-strip-types --disable-warning=ExperimentalWarning test/index.ts",
|
||||
"test:bun": "bun test/index.ts",
|
||||
"test:deno": "deno --allow-env --allow-read test/index.ts",
|
||||
"test:node20": "cd test; npx tsc; node compiled/test/index.js"
|
||||
},
|
||||
"keywords": [
|
||||
"ed25519",
|
||||
"rfc8032",
|
||||
"fips186",
|
||||
"signature",
|
||||
"eddsa",
|
||||
"noble",
|
||||
"cryptography",
|
||||
"elliptic curve",
|
||||
"rfc7748",
|
||||
"zip215",
|
||||
"x25519",
|
||||
"curve25519"
|
||||
],
|
||||
"homepage": "https://paulmillr.com/noble/",
|
||||
"funding": "https://paulmillr.com/funding/",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/paulmillr/noble-ed25519.git"
|
||||
},
|
||||
"type": "module",
|
||||
"main": "index.js",
|
||||
"module": "index.js",
|
||||
"types": "index.d.ts",
|
||||
"sideEffects": false,
|
||||
"author": "Paul Miller (https://paulmillr.com)",
|
||||
"license": "MIT"
|
||||
}
|
||||
Reference in New Issue
Block a user