generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 816 Bytes
/
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
{
"name": "obsidian-plugin-time-diff",
"version": "1.1.0",
"description": "This is a plugin for Obsidian (https://obsidian.md) which calculates and displays diff in hours and minutes between two dates in `timediff` markdown block",
"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": [
"obsidian"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"obsidian": "1.1.1",
"tslib": "2.5.0",
"typescript": "4.9.5"
},
"dependencies": {}
}