mirror of
https://github.com/embersparks/obsidian-github-stars-manager.git
synced 2026-07-22 06:44:31 +00:00
添加 ESLint 配置以支持本地代码检查: - 安装 eslint 和 eslint-plugin-obsidianmd - 添加 eslint.config.mjs 配置文件 - 遵循 ObsidianReviewBot 建议:本地运行代码检查 这将帮助开发者在提交前发现并修复代码规范问题。 🤖 Generated with [Claude Code](https://claude.com/claude-code)
36 lines
994 B
JSON
36 lines
994 B
JSON
{
|
|
"name": "github-stars-manager",
|
|
"version": "0.1.0",
|
|
"description": "Obsidian plugin for managing and viewing your GitHub starred repositories with multi-account support and custom themes",
|
|
"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",
|
|
"github",
|
|
"stars",
|
|
"repository",
|
|
"plugin"
|
|
],
|
|
"author": "EmberSparks",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^18.19.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"builtin-modules": "^3.3.0",
|
|
"dotenv": "^16.3.1",
|
|
"esbuild": "^0.19.0",
|
|
"eslint": "^9.39.1",
|
|
"eslint-plugin-obsidianmd": "^0.1.9",
|
|
"obsidian": "latest",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/rest": "^22.0.0"
|
|
}
|
|
}
|