xheldon_git-folder-sync/package.json
Xheldon 56b942e7ff v1.0.4: 修复 Obsidian 社区插件反馈问题
- 修复硬编码的 .obsidian 路径,使用 app.vault.configDir
- 将内联 JavaScript 样式移动到 CSS 文件中
- 减少 console.log 输出,避免污染开发控制台
- 移除 any 类型转换,提高类型安全性
- 提升代码质量以符合 Obsidian 社区插件标准
2025-08-01 15:31:31 +08:00

40 lines
No EOL
1.3 KiB
JSON

{
"name": "git-folder-sync",
"version": "1.0.4",
"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"
}
}