generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.15 KB
/
package.json
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
37
38
39
40
{
"name": "obsidian-plugin-journal-review",
"version": "2.5.0",
"description": "Review your daily notes on their anniversaries, like \"what happened today last year\"\n\n",
"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",
"lint": "eslint . && knip && prettier --check .",
"format": "prettier --write .",
"generateNotes": "ts-node ./scripts/generateNotes.ts vault 5",
"knip": "knip"
},
"keywords": [],
"author": "Kageetai",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.1",
"builtin-modules": "^4.0.0",
"esbuild": "^0.24.0",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"knip": "^5.39.2",
"moment": "^2.30.1",
"obsidian": "latest",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"dependencies": {
"obsidian-daily-notes-interface": "^0.9.4",
"preact": "^10.25.1"
}
}