chore(monorepo): set up package.json for client

This commit is contained in:
Elian Doran 2025-04-18 01:35:06 +03:00
parent a3cfef211e
commit 4aad0552b3
No known key found for this signature in database
2 changed files with 25 additions and 6 deletions

View File

@ -5,12 +5,6 @@
"version": "0.93.0",
"license": "AGPL-3.0-only",
"main": "./electron-main.js",
"author": {
"name": "TriliumNext Notes Team",
"email": "contact@eliandoran.me",
"url": "https://github.com/TriliumNext/Notes"
},
"copyright": "",
"bin": {
"trilium": "src/main.js"
},

25
apps/client/package.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "triliumnext.notes.client",
"version": "0.0.1",
"description": "JQuery-based client for TriliumNext, used for both web and desktop (via Electron)",
"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"
},
"copyright": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}