mirror of
https://github.com/jiezhengj/NotePipe.git
synced 2026-07-22 08:28:52 +00:00
- manifest.json: 移除描述中的 'Obsidian' 字样,authorUrl 改为个人主页 - settings.ts: 内联样式改为 CSS class - main.ts: 移除默认快捷键,onunload 改为 void 返回,loadData 显式类型 - copy-interceptor.ts: void promise, document/window API 规范 - floating-button.ts: void promise, document/window API 规范 - esbuild.config.mjs: 内联 builtin-modules 列表 - package.json: 移除 builtin-modules,新增 @codemirror/view Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
26 lines
608 B
JSON
26 lines
608 B
JSON
{
|
|
"name": "notepipe",
|
|
"version": "0.1.0",
|
|
"description": "Copy text from Obsidian with file path and line number context — ready for AI agent terminals.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "node esbuild.config.mjs production"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"ai",
|
|
"claude",
|
|
"context"
|
|
],
|
|
"author": "jiezhengj",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@codemirror/view": "^6.0.0",
|
|
"@types/node": "^20.11.0",
|
|
"esbuild": "^0.25.0",
|
|
"obsidian": "^1.5.0",
|
|
"typescript": "^5.3.0"
|
|
}
|
|
}
|