mirror of
https://github.com/zhou-yusen/Moving-Note.git
synced 2026-07-22 07:45:22 +00:00
- Desktop sync via system Git (pull → commit → push) - Mobile sync via GitHub API (pull + push) - i18n support (English / Chinese) - Auto-sync and sync-on-startup - Custom commit message template - Branch management with auto-stash
21 lines
592 B
JSON
21 lines
592 B
JSON
{
|
|
"name": "moving-note",
|
|
"version": "1.0.0",
|
|
"description": "Sync notes via git on desktop and GitHub API on mobile",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "node esbuild.config.mjs production"
|
|
},
|
|
"keywords": ["obsidian", "git", "sync", "github"],
|
|
"author": "Yusen",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"builtin-modules": "^3.3.0",
|
|
"esbuild": "^0.20.0",
|
|
"obsidian": "latest",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {}
|
|
}
|