-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
82 lines (82 loc) · 2.85 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "obsidian-languagetool-plugin",
"version": "0.9.7",
"description": "This is a plugin for obsidian.md that integrates languagetool",
"main": "main.js",
"scripts": {
"build:dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production",
"lint": "eslint . --ext .ts",
"slint": "stylelint **/*.css",
"lint:fix": "eslint . --ext .ts --fix",
"slint:fix": "stylelint **/*.css --fix",
"prettier": "prettier --write --use-tabs --single-quote --print-width 120 --trailing-comma all --end-of-line lf"
},
"keywords": [],
"author": "Clemens Ertle",
"contributors": [
{
"name": "Clemens Ertle",
"url": "https://github.com/Clemens-E"
},
{
"name": "Matthew Meyers",
"url": "https://github.com/mgmeyers"
}
],
"repository": {
"url": "https://github.com/Clemens-E/obsidian-languagetool-plugin"
},
"devDependencies": {
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/state": "^6.0.1",
"@codemirror/view": "^6.0.1",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/node": "^14.14.35",
"@types/prettier": "^2.2.3",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"@typescript-eslint/typescript-estree": "^4.15.1",
"eslint": "^6.8.0",
"eslint-config-marine": "^6.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"obsidian": "^0.13.11",
"prettier": "^1.19.1",
"rollup": "^2.42.1",
"rollup-plugin-polyfill-node": "^0.8.0",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-prettier": "^1.2.0",
"tslib": "^2.0.3",
"typescript": "^4.7.4"
},
"dependencies": {
"annotatedtext-remark": "^0.8.0",
"quick-lru": "^6.0.0"
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"eslintConfig": {
"extends": "marine/prettier/node",
"ignorePatterns": "*.js",
"rules": {
"@typescript-eslint/no-unnecessary-type-assertion": "off",
"@typescript-eslint/no-extraneous-class": "off",
"@typescript-eslint/no-floating-promises": 1,
"@typescript-eslint/no-use-before-define": [
"error",
{
"functions": false
}
],
"no-useless-constructor": "off"
}
}
}