-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 869 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 869 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
{
"name": "obsidian-tasklite",
"version": "0.4.8",
"description": "A lightweight tree-aware task manager for Obsidian.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "bun esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && bun esbuild.config.mjs production",
"test": "bun test",
"version": "bun version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint ."
},
"keywords": [],
"license": "0-BSD",
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^16.18.126",
"esbuild": "0.25.5",
"eslint-plugin-obsidianmd": "0.1.9",
"globals": "14.0.0",
"tslib": "2.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "8.35.1",
"@eslint/js": "9.30.1",
"jiti": "2.6.1"
},
"dependencies": {
"@codemirror/view": "^6.43.0",
"obsidian": "1.12.3",
"pinyinlite": "^1.2.1",
"rrule": "^2.8.1"
}
}