generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 768 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
{
"name": "obsidian-quick-select",
"version": "1.2.0",
"description": "Allows the use of meta key plus number to quickly select and execute that item in any Obsidian modal",
"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": [],
"author": "James Alexandre",
"license": "MIT",
"devDependencies": {
"@types/node": "22.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"builtin-modules": "3.3.0",
"esbuild": "0.23.0",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "5.5.4"
}
}