generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 801 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
28
{
"name": "obsidian-wakatime-kvh",
"version": "1.0.0",
"description": "Connect your Obsidian to Wakatime or Wakapi to track the time spent while browsing or writing notes.",
"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",
"wakatime",
"wakapi"
],
"author": "Kevin Woblick <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.25.0",
"obsidian": "latest",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
}
}