forked from zhouhua/obsidian-sticky-headings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.66 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "obsidian-sticky-headings",
"version": "2.0.0",
"description": "Display headings tree during editing and preview to indicate the current position.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"typesafe-i18n": "typesafe-i18n",
"lint": "eslint ./",
"pretty": "prettier --write \"./**/*.{mjs,cjs,ts,tsx,json,svelte}\"",
"prepare": "husky"
},
"keywords": [
"obsidian",
"plugin",
"markdown"
],
"author": "Zhou Hua",
"repository": {
"type": "git",
"url": "https://github.com/zhouhua/obsidian-sticky-headings"
},
"bugs": {
"url": "https://github.com/zhouhua/obsidian-sticky-headings/issues"
},
"license": "MIT",
"devDependencies": {
"@codemirror/view": "^6.32.0",
"@eslint/js": "^9.9.0",
"@stylistic/eslint-plugin": "^2.6.4",
"@tsconfig/svelte": "^5.0.4",
"@types/eslint__js": "^8.42.3",
"@types/lodash": "^4.17.7",
"@types/node": "^20.15.0",
"builtin-modules": "3.3.0",
"esbuild": "0.23.0",
"esbuild-svelte": "^0.8.1",
"eslint": "^9.9.0",
"husky": "^9.1.4",
"obsidian": "latest",
"obsidian-typings": "^2.2.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^4.2.18",
"svelte-preprocess": "^6.0.2",
"tslib": "2.6.3",
"typescript": "5.5.3",
"typescript-eslint": "^8.1.0"
},
"dependencies": {
"lodash": "^4.17.21",
"typesafe-i18n": "^5.26.2"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{mjs,ts,json,svelte}": "prettier --write"
}
}