mirror of
https://github.com/meganjjzhang/Promptuary.git
synced 2026-07-22 07:49:22 +00:00
35 lines
978 B
JSON
35 lines
978 B
JSON
{
|
|
"name": "obsidian-promptuary",
|
|
"version": "1.0.6",
|
|
"description": "Obsidian 阅读标注与 AI 批阅插件——阅读时高亮/记笔记,批阅时快速留下修改意见,一键导出给外部 AI 或 Agent 执行修改。",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"typecheck": "tsc -noEmit -skipLibCheck"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"ai",
|
|
"annotation",
|
|
"review",
|
|
"highlight"
|
|
],
|
|
"author": "婧晶",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/diff": "^5.2.1",
|
|
"@types/node": "^20.11.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"esbuild": "^0.20.0",
|
|
"obsidian": "^1.5.7",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"dependencies": {
|
|
"diff": "^5.2.0",
|
|
"@codemirror/view": "^6.0.0",
|
|
"@codemirror/state": "^6.0.0"
|
|
}
|
|
}
|