From dd07663183be4b23e7aecf59c098114976adad6c Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 18 Apr 2025 23:46:59 +0300 Subject: [PATCH] chore(monorepo/electron): create package.json --- apps/electron/package.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 apps/electron/package.json diff --git a/apps/electron/package.json b/apps/electron/package.json new file mode 100644 index 000000000..38aa5ac3c --- /dev/null +++ b/apps/electron/package.json @@ -0,0 +1,24 @@ +{ + "name": "@triliumnext/electron", + "version": "0.0.1", + "description": "Desktop client for TriliumNext, embedding both the client and the server.", + "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" + } +}