-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
41
42
43
44
45
46
{
"name": "markwhen",
"version": "0.0.4",
"description": "Markwhen integration for Obsidian.md",
"main": "main.js",
"type": "module",
"scripts": {
"build": "tsc -noEmit -skipLibCheck && vite build",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint ./src",
"dev": "vite build --watch & watch ./copyAssets.sh",
"vite": "vite build --watch & watch ./copyAssets.sh"
},
"keywords": [
"timeline",
"gantt",
"gantt chart",
"calendar",
"markdown",
"project planning"
],
"author": "Rob Koch",
"license": "MIT",
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"obsidian": "^1.5.7-1",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vite": "^5.2.10",
"watch": "^0.13.0"
},
"dependencies": {
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.3",
"@markwhen/calendar": "^1.3.4",
"@markwhen/oneview": "^1.0.0",
"@markwhen/parser": "^0.10.15",
"@markwhen/resume": "^1.1.0",
"@markwhen/timeline": "^1.3.3",
"@markwhen/view-client": "^1.4.4"
}
}