generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 856 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 856 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
{
"name": "obsidian-rollover-daily-todos",
"version": "1.2.0",
"description": "This Obsidian.md plugin rolls over incomplete TODOs from the previous daily note to today's daily note. (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c --environment BUILD:production",
"test": "vitest",
"format": "prettier --write ."
},
"cspell": {
"words": [
"todos"
]
},
"keywords": [],
"author": "Lukas Mölschl",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"prettier": "^2.8.1",
"rollup": "^2.32.1",
"vitest": "^3.1.2"
},
"dependencies": {
"obsidian-daily-notes-interface": "^0.9.2"
}
}