generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 KB
/
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
39
40
41
{
"name": "obsidian-treefocus",
"version": "1.1.4",
"description": "Obsidian plugin: Highlight, dim & style your files & folders in the file explorer (navigation) based on predefined or custom rules.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"tsc": "tsc -noEmit -skipLibCheck",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"semantic-release": "semantic-release",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"prepare": "husky install",
"commitlint": "commitlint --edit"
},
"keywords": [],
"author": {
"name": "iOSonntag",
"url": "https://iOSonntag.com"
},
"homepage": "https://iOSonntag.com",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"commitlint": "^17.7.1",
"esbuild": "0.17.3",
"husky": "^8.0.3",
"obsidian": "latest",
"semantic-release": "^22.0.4",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"deepmerge": "^4.3.1"
}
}