Hello world

This commit is contained in:
2026-01-15 20:57:03 +07:00
commit c14b5ff19b
8 changed files with 772 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "@remotestorage/module-places",
"version": "1.0.0",
"description": "Manage favorite/saved places",
"main": "dist/places.js",
"types": "dist/places.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Râu Cao <raucao@kosmos.org>",
"license": "MIT",
"devDependencies": {
"remotestoragejs": "^2.0.0-beta.8",
"rimraf": "^6.1.2",
"typescript": "^5.9.3"
},
"dependencies": {
"latlon-geohash": "^2.0.0",
"ulid": "^3.0.2"
}
}