-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.25 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.25 KB
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
39
{
"name": "obsidian-note-toolbar",
"version": "1.30.18",
"description": "Obsidian plugin that adds customizable toolbars to your notes.",
"main": "main.js",
"scripts": {
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"dev": "npm run prebuild && node esbuild.config.mjs",
"lint": "eslint .",
"prebuild": "node -p \"'export const PLUGIN_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"release": "node release.mjs",
"typecheck": "tsc --noEmit --skipLibCheck"
},
"keywords": [],
"author": "Chris Gurney",
"license": "GPL-3.0",
"devDependencies": {
"@types/node": "^25.0.3",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@typescript-eslint/utils": "^8.53.1",
"builtin-modules": "3.3.0",
"chokidar": "^5.0.0",
"esbuild": "^0.27.0",
"eslint": "^9.38.0",
"eslint-plugin-obsidianmd": "^0.1.9",
"obsidian": "latest",
"postcss": "^8.4.45",
"tslib": "2.4.0",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@codemirror/view": "6.38.6",
"sortablejs": "^1.15.2"
}
}