-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 978 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
{
"name": "obsidian-file-cleaner-redux",
"version": "1.5.0",
"description": "Remove empty markdown files and unused attachments in your vault.",
"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",
"bump-minor": "npm version minor",
"bump-patch": "npm version patch"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^20.17.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.21.5",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"moment": "^2.30.1",
"obsidian": "^1.7.2",
"prettier": "^3.3.3",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^7.18.0"
}
}