forked from Clemens-E/obsidian-languagetool-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.64 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
{
"name": "obsidian-languagetool",
"version": "1.0.13",
"description": "Unofficial integration of the LanguageTool spell and grammar checker.",
"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"
},
"keywords": [],
"author": "Lars Wrenger",
"contributors": [
{
"name": "Lars Wrenger",
"url": "https://github.com/wrenger"
},
{
"name": "Clemens Ertle",
"url": "https://github.com/Clemens-E"
},
{
"name": "Matthew Meyers",
"url": "https://github.com/mgmeyers"
}
],
"repository": {
"url": "https://github.com/wrenger/obsidian-languagetool-plugin"
},
"devDependencies": {
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.34.1",
"@types/node": "^22.8.2",
"@typescript-eslint/eslint-plugin": "^8.12.1",
"@typescript-eslint/parser": "^8.12.1",
"@typescript-eslint/typescript-estree": "^8.12.1",
"builtin-modules": "4.0.0",
"electron": "^33.0.2",
"esbuild": "0.24.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"obsidian": "^1.7.2",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.19.1"
},
"dependencies": {
"annotatedtext-remark": "^1.0.10",
"jsonpath-plus": "^10.1.0"
}
}