generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 990 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
29
30
31
32
33
34
35
36
37
38
{
"name": "obsidian-budget-planner-plugin",
"version": "1.0.0",
"description": "A custom code block plugin for Obsidian that provides a user-friendly table for budget planning.",
"keywords": [
"obsidian",
"plugin",
"budget",
"planner",
"table",
"code block"
],
"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",
"lint": "eslint . --ext .ts src"
},
"author": "Ivan Kalinichenko <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"devDependencies": {
"@types/node": "^20.17.14",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"builtin-modules": "3.3.0",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"obsidian": "latest",
"prettier": "^3.4.2",
"tslib": "2.6.3",
"typescript": "4.7.4"
}
}