From 9a2cd6b5b8108e5d49015986ed26ecbbb7c5ddc3 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 18 Apr 2025 11:52:52 +0300 Subject: [PATCH] chore(monorepo/server): create package.json --- apps/server/package.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 apps/server/package.json diff --git a/apps/server/package.json b/apps/server/package.json new file mode 100644 index 000000000..375717cd6 --- /dev/null +++ b/apps/server/package.json @@ -0,0 +1,24 @@ +{ + "name": "@triliumnext/server", + "version": "0.0.1", + "description": "The server-side component of TriliumNext, which exposes the client via the web, allows for sync and provides a REST API for both internal and external use.", + "homepage": "https://github.com/TriliumNext/Notes#readme", + "bugs": { + "url": "https://github.com/TriliumNext/Notes/issues" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/TriliumNext/Notes.git" + }, + "license": "AGPL-3.0-only", + "author": { + "name": "TriliumNext Notes Team", + "email": "contact@eliandoran.me", + "url": "https://github.com/TriliumNext/Notes" + }, + "type": "module", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + } +}