generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "vim-toggle",
"version": "1.0.8",
"description": "A plugin for Obsidian that allows you to toggle VimMode on and off.",
"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",
"plugin",
"vim",
"toggle"
],
"author": "Conner Ohnesorge",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.6.0",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"builtin-modules": "4.0.0",
"esbuild": "^0.24.0",
"obsidian": "latest",
"tslib": "^2.7.0",
"typescript": "5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conneroisu/Vim-Toggle-Obsidian.git"
},
"bugs": {
"url": "https://github.com/conneroisu/Vim-Toggle-Obsidian/issues"
},
"homepage": "https://github.com/conneroisu/Vim-Toggle-Obsidian#readme"
}