mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
* feat: set up public inbox api server * feat: add zod validation for raw inbox item * chore: update encrypted item type && raw inbox item schema * feat: use symmetric & asymmetric combination for inbox encryption * chore: improve error handling * chore: update encrypted item type * feat: add Dockerfile for Notesnook.Inbox.Api
33 lines
809 B
JSON
33 lines
809 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",
|
|
"libsodium-wrappers-sumo": "^0.7.15",
|
|
"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"
|
|
}
|
|
} |