-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 854 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "ai-annotate",
"version": "0.2.0",
"description": "Annotate markdown with inline instructions that Claude processes into suggested edits.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.0",
"@eslint/json": "^1.2.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"esbuild": "0.25.5",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.1.9",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.58.0"
},
"dependencies": {
"obsidian": "latest"
}
}