yan-istart_IStart-Note-AI-P.../package.json
Yan 7b26626ccb feat(2.0.0): three-module architecture — knowledge/execution/auxiliary
M1: README正式化 + badges + 三模块叙事 + 状态修正 + 版本对齐2.0.0
M2: 设置页改为侧边导航(知识/执行/辅助) + 分区布局CSS
M3: ActionDomain(knowledge/execution/auxiliary) 替代旧ActionGroup + 面板三栏
M4: Scheduler MVP — ScheduledTaskRunner + NextRunCalculator + 知识债务扫描 + 百度备份任务
    KnowledgeIndexService 新增 getAll() 公开方法
    KnowledgeDebtModal 改用公开API
2026-05-20 16:06:28 +08:00

47 lines
1.5 KiB
JSON

{
"name": "istart-note-ai",
"version": "2.0.0",
"description": "IStart-Note-AI: an Obsidian plugin that turns notes into a structured personal knowledge system, powered by DeepSeek and other OpenAI-compatible LLMs.",
"main": "main.js",
"private": true,
"scripts": {
"dev": "node esbuild.config.mjs",
"typecheck": "tsc -noEmit -skipLibCheck",
"build": "npm run typecheck && node esbuild.config.mjs production",
"test": "echo \"no tests yet — see CONTRIBUTING.md for the planned vitest setup\" && exit 0",
"ci": "npm run typecheck && npm run build",
"version": "node scripts/version-bump.mjs && git add manifest.json versions.json",
"release": "bash scripts/release.sh",
"submit": "bash scripts/submit-plugin.sh"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"ai",
"deepseek",
"knowledge-management",
"knowledge-graph",
"personal-knowledge-management",
"pkm",
"notes"
],
"author": "Yan",
"license": "MIT",
"homepage": "https://github.com/yan-istart/IStart-Note-AI-Plugin#readme",
"bugs": {
"url": "https://github.com/yan-istart/IStart-Note-AI-Plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/yan-istart/IStart-Note-AI-Plugin.git"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"esbuild": "0.17.3",
"obsidian": "^1.7.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}