generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
61
62
{
"private": true,
"name": "obsidian-syncthing-integration",
"version": "2.3.0",
"description": "Syncthing integration for Obsidian",
"main": "build/main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "pnpm lint && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"prepare": "husky install",
"lint": "tsc -noEmit -skipLibCheck && eslint . --ext .ts,.svelte src",
"release": "semantic-release",
"browsers": "pnpx update-browserslist-db@latest"
},
"keywords": [],
"author": "LBF38",
"license": "MIT",
"devDependencies": {
"@codemirror/merge": "^6.7.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.34.1",
"@commitlint/config-conventional": "^18.6.3",
"@js-random/date": "^0.3.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@total-typescript/ts-reset": "^0.5.1",
"@tsconfig/svelte": "^5.0.4",
"@types/marked": "^5.0.2",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"builtin-modules": "3.3.0",
"child_process": "^1.0.2",
"codemirror": "^6.0.1",
"commitlint": "^18.6.1",
"css-minify": "^2.0.0",
"esbuild": "0.24.0",
"esbuild-svelte": "^0.8.2",
"eslint": "^8.57.0",
"eslint-plugin-svelte": "^2.45.1",
"fs": "0.0.1-security",
"husky": "^8.0.3",
"lorem-ipsum": "^2.0.8",
"marked": "^11.2.0",
"obsidian": "latest",
"sass": "^1.79.5",
"semantic-release": "^22.0.12",
"svelte": "^4.2.19",
"svelte-preprocess": "^5.1.4",
"tslib": "2.8.1",
"typescript": "^5.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/LBF38/obsidian-syncthing-integration.git"
},
"dependencies": {
"style-mod": "^4.1.2"
}
}