forked from Tatsh/kate-wakatime
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.66 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.66 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"contributors": ["Andrew Udvare <audvare@gmail.com>"],
"cspell": {
"cache": {
"useCache": true
},
"dictionaryDefinitions": [
{
"name": "main",
"path": ".vscode/dictionary.txt"
}
],
"enableFileTypes": {
"*": true
},
"enableGlobDot": true,
"files": ["*"],
"ignorePaths": [
"*.1",
"*.har",
"*.lock",
".git/**",
".yarn/**/*.cjs",
".vscode/extensions.json",
"man/**"
],
"language": "en-GB",
"languageSettings": [
{
"dictionaries": ["main"],
"languageId": "*"
}
],
"useGitignore": true
},
"devDependencies": {
"@prettier/plugin-xml": "^3.4.1",
"cspell": "^9.1.1",
"markdownlint-cli2": "^0.18.1",
"prettier": "^3.6.0",
"prettier-plugin-ini": "^1.3.0",
"prettier-plugin-sort-json": "^4.1.1",
"prettier-plugin-toml": "^2.0.5",
"yarn-audit-fix": "^10.1.1"
},
"homepage": "https://tatsh.github.io/kate-wakatime/",
"keywords": ["kate", "kde", "plasma", "wakatime"],
"license": "MIT",
"markdownlint-cli2": {
"config": {
"MD033": {
"allowed_elements": ["kbd"]
},
"default": true,
"line-length": {
"code_blocks": false,
"line_length": 100,
"tables": false
}
}
},
"name": "kate-wakatime",
"packageManager": "yarn@4.9.2",
"prettier": {
"endOfLine": "lf",
"iniSpaceAroundEquals": true,
"jsonRecursiveSort": true,
"overrides": [
{
"files": ["package.json"],
"options": {
"parser": "json"
}
},
{
"files": [".clang-format"],
"options": {
"parser": "yaml"
}
},
{
"files": ["*.qrc", "*.rc", "*.ui"],
"options": {
"parser": "xml"
}
}
],
"plugins": [
"@prettier/plugin-xml",
"prettier-plugin-ini",
"prettier-plugin-sort-json",
"prettier-plugin-toml"
],
"printWidth": 100,
"reorderKeys": true,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git@github.com:Tatsh/kate-wakatime.git"
},
"scripts": {
"build": "cmake --preset=default -DBUILD_DOCS=ON && cmake --build build",
"check-formatting": "cmake-format --check CMakeLists.txt src/CMakeLists.txt && clang-format -n src/*.cpp src/*.h && prettier -c . && markdownlint-cli2 '**/*.md' '#node_modules'",
"check-spelling": "cspell --no-progress .",
"format": "cmake-format -i CMakeLists.txt src/CMakeLists.txt && clang-format -i src/*.cpp src/*.h && yarn prettier -w .",
"qa": "yarn check-spelling && yarn check-formatting"
},
"version": "1.5.1"
}