Add manifest

This commit is contained in:
mudnug 2025-11-15 13:15:55 -07:00
parent 594f8c2284
commit 96ac155552
3 changed files with 41 additions and 0 deletions

28
.gitignore vendored Normal file
View file

@ -0,0 +1,28 @@
# vscode
.vscode
# Intellij
*.iml
.idea
# npm
node_modules
# Don't include the compiled main.js file in the repo.
# They should be uploaded to GitHub releases instead.
main.js
# Exclude sourcemaps
*.map
# obsidian
data.json
# Exclude macOS Finder (System Explorer) View States
.DS_Store
# deployment
*.ps1
data.json
.npmrc

10
manifest.json Normal file
View file

@ -0,0 +1,10 @@
{
"id": "note-reader",
"name": "Note Reader",
"version": "1.0.0",
"minAppVersion": "1.6.6",
"description": "Provides text-to-speech (TTS) for notes or clipped articles by reading them aloud while highlighting words. Offers on-device and online TTS.",
"author": "m",
"authorUrl": "https://github.com/mudnug",
"isDesktopOnly": false
}

3
versions.json Normal file
View file

@ -0,0 +1,3 @@
{
"1.0.0": "1.6.6"
}