mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-03-30 16:00:46 +02:00
* inbox: use pgp encryption && other fixes * fix inbox key last used at time * remove inbox items if keys change or same item id syncs * inbox:update inbox sync item * rename item field to sync * add alg field * sync: delete inbox items after commit succeeds * user: merge if conditions --------- Co-authored-by: Abdullah Atta <abdullahatta@streetwriters.co>
34 lines
828 B
JSON
34 lines
828 B
JSON
{
|
|
"name": "notesnook-inbox-api",
|
|
"version": "1.0.0",
|
|
"description": "Notesnook Inbox API server",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "bun build src/index.ts --outdir dist --target bun",
|
|
"start": "bun run dist/index.js",
|
|
"dev": "bun --watch src/index.ts"
|
|
},
|
|
"keywords": [
|
|
"notesnook",
|
|
"inbox",
|
|
"api"
|
|
],
|
|
"license": "GPL-3.0-or-later",
|
|
"author": {
|
|
"name": "Streetwriters (Private) Limited",
|
|
"email": "support@streetwriters.co",
|
|
"url": "https://streetwriters.co"
|
|
},
|
|
"dependencies": {
|
|
"express": "^5.1.0",
|
|
"express-rate-limit": "^8.1.0",
|
|
"openpgp": "^6.2.2",
|
|
"zod": "^4.1.9"
|
|
},
|
|
"devDependencies": {
|
|
"@types/libsodium-wrappers-sumo": "^0.7.8",
|
|
"@types/express": "^5.0.3",
|
|
"@types/node": "^24.5.2",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
} |