mirror of
https://github.com/xheldon/git-folder-sync.git
synced 2026-07-22 06:59:00 +00:00
- Changed plugin ID from 'git-sync' to 'git-folder-sync' - Updated plugin name to 'Git Folder Sync' consistently - Updated cache key to match new ID - Bumped version to 1.0.1 - Updated all documentation and i18n strings
40 lines
No EOL
1.3 KiB
JSON
40 lines
No EOL
1.3 KiB
JSON
{
|
|
"name": "git-folder-sync",
|
|
"version": "1.0.1",
|
|
"description": "Synchronize files in your Obsidian Vault with a specified directory in the designated GitHub repository (rather than the entire repository); send your images to cloud storage services.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"github",
|
|
"sync"
|
|
],
|
|
"author": "Xheldon <xheldoncao@gmail.com> (https://github.com/Xheldon)",
|
|
"license": "MIT",
|
|
"funding": {
|
|
"type": "paypal",
|
|
"url": "https://paypal.me/xheldoncao"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@types/react": "^18.0.0",
|
|
"@types/react-dom": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"@octokit/rest": "^19.0.0"
|
|
}
|
|
} |