-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "obsidian-create-task",
"version": "1.4.2",
"description": "Create tasks faster from anywhere.",
"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"
},
"keywords": [],
"author": "Simon Knittel <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "20.14.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"builtin-modules": "4.0.0",
"esbuild": "0.21.4",
"obsidian": "latest",
"prettier": "3.3.1",
"prettier-plugin-organize-imports": "3.2.4",
"tslib": "2.6.3",
"typescript": "5.4.5"
},
"dependencies": {
"chrono-node": "2.7.6",
"clsx": "2.1.1",
"lucide-react": "0.390.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.51.5",
"semver": "7.6.2"
}
}