forked from taskgenius/taskgenius-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.36 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.36 KB
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
41
42
{
"name": "obsidian-task-progress-bar",
"version": "1.1.0",
"description": "A task progress bar plugin for tasks in Obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"bumpversion": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Boninall",
"license": "MIT",
"devDependencies": {
"@codemirror/autocomplete": "^0.19.9",
"@codemirror/commands": "^0.19.0",
"@codemirror/fold": "0.19.0",
"@codemirror/highlight": "^0.19.0",
"@codemirror/history": "^0.19.0",
"@codemirror/lang-html": "^0.19.4",
"@codemirror/matchbrackets": "^0.19.0",
"@codemirror/panel": "^0.19.0",
"@codemirror/basic-setup": "^0.19.0",
"@codemirror/buildhelper": "^0.1.0",
"@codemirror/lang-css": "^0.19.3",
"@codemirror/language": "^0.19.3",
"@codemirror/rangeset": "^0.19.1",
"@codemirror/state": "^0.19.9",
"@codemirror/view": "^0.19.7",
"@codemirror/search": "^0.19.0",
"@codemirror/stream-parser": "https://github.com/lishid/stream-parser",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"builtin-modules": "^3.2.0",
"esbuild": "0.13.12",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.3",
"regexp-match-indices": "^1.0.2"
}
}