xheldon_git-folder-sync/package.json
2025-07-25 19:53:04 +08:00

40 lines
No EOL
1.3 KiB
JSON

{
"name": "git-folder-sync",
"version": "1.0.0",
"description": "Synchronize files in your Obsidian Vault with a specified directory in the designated GitHub repository (rather than the entire repository).",
"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"
}
}