-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 799 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
{
"name": "obsidian-hide-sidebars-when-narrow",
"version": "1.1.0",
"description": "This Obsidian plugin hides the sidebars when the window is resized to be narrower",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"lint": "eslint src",
"build": "tsc -noEmit && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"author": "Michael Hanson, NomarCub",
"license": "MIT",
"devDependencies": {
"@stylistic/eslint-plugin": "^2.2.2",
"@types/node": "20.11.1",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"builtin-modules": "4.0.0",
"esbuild": "0.21.5",
"eslint": "^8.57.0",
"obsidian": "~1.5.7-1",
"tslib": "2.6.3",
"typescript": "5.5.2"
}
}