-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 896 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 896 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
31
32
33
34
35
36
{
"name": "obsidian-microquest",
"version": "1.0.0",
"description": "AI-powered goal breakdown into micro-tasks via Claude API conversations.",
"type": "module",
"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",
"obsidian-plugin",
"task-management",
"ai",
"claude"
],
"author": "Ian McMurray",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/imcmurray/obsidian-microquest.git"
},
"devDependencies": {
"@types/node": "^25.3.2",
"@typescript-eslint/parser": "^8.56.1",
"esbuild": "^0.27.3",
"eslint": "^9.39.3",
"eslint-plugin-obsidianmd": "^0.1.9",
"typescript": "^5.9.3"
},
"dependencies": {
"obsidian": "^1.12.3"
}
}