-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 810 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 810 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
{
"name": "lifelong-calendar",
"version": "0.1.0",
"description": "Build a date-based life timeline with Markdown entries, reminders, linked notes, and grounded AI chat.",
"main": "main.js",
"scripts": {
"build": "esbuild src/main.ts --bundle --minify --outfile=main.js --format=cjs --platform=node --external:obsidian --target=es2020",
"check": "tsc --noEmit",
"setup-reminder": "node scripts/setup-reminder.js"
},
"keywords": [
"obsidian",
"plugin",
"calendar",
"timeline"
],
"author": "Kushal Garg",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.0.0",
"esbuild": "^0.25.0",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.1.9",
"obsidian": "^1.7.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.57.0"
}
}