-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 3.88 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 3.88 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"contributors": [
"Andrew Udvare <audvare@gmail.com>",
"Sergei Trofimovich <slyich@gmail.com>",
"Andreas Sturmlechner <andreas.sturmlechner@gmail.com>",
"Nicolas Parlant <nicolas.parlant@parhuet.fr>",
"Martin Sakmar <martin.sakmar@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",
"dist/**",
"man/**",
".docs/*.tags",
".docs/*.tag.xml"
],
"language": "en-GB",
"languageSettings": [
{
"dictionaries": ["main"],
"languageId": "*"
}
],
"useGitignore": true
},
"description": "Automatic BPM (beats per minute) detection utility.",
"devDependencies": {
"@prettier/plugin-xml": "^3.4.2",
"cspell": "^9.8.0",
"markdownlint-cli2": "^0.22.0",
"prettier": "^3.8.3",
"prettier-plugin-ini": "^1.3.0",
"prettier-plugin-sort-json": "^4.2.0",
"prettier-plugin-toml": "^2.0.6"
},
"engines": {
"node": ">=20.0"
},
"files": ["LICENSE.txt", "README.md"],
"homepage": "https://tatsh.github.io/bpmdetect/",
"keywords": ["bpm", "dj", "music", "tempo"],
"license": "GPL-3.0-or-later",
"markdownlint-cli2": {
"config": {
"MD024": {
"siblings_only": true
},
"MD033": {
"allowed_elements": ["kbd"]
},
"default": true,
"line-length": {
"code_blocks": false,
"line_length": 100,
"tables": false
}
},
"gitignore": true,
"globs": ["**/*.md", "**/*.mdc"],
"noBanner": true,
"showFound": true
},
"name": "bpmdetect",
"packageManager": "yarn@4.14.1",
"prettier": {
"endOfLine": "lf",
"iniSpaceAroundEquals": true,
"jsonRecursiveSort": true,
"overrides": [
{
"files": ["*.json.dist", "package.json"],
"options": {
"parser": "json"
}
},
{
"files": [".clang-format"],
"options": {
"parser": "yaml"
}
},
{
"files": ["*.qrc", "*.rc", "*.ts", "*.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/bpmdetect.git"
},
"scripts": {
"build": "cmake --preset=default -DBUILD_DOCS=ON && cmake --build build",
"check-formatting": "clang-format --dry-run src/*.cpp src/*.h && prettier --check . && markdownlint-cli2 --config package.json --configPointer /markdownlint-cli2",
"check-spelling": "cspell --no-progress .",
"dict:update": "rm -f .vscode/dictionary.txt && cspell lint --no-progress --no-summary --unique --words-only | tr '[:upper:]' '[:lower:]' | sort -u > .vscode/dictionary.txt",
"flatpak-build-install": "flatpak run --command=flathub-build org.flatpak.Builder --install sh.tat.bpmdetect.yml",
"flatpak-install": "flatpak uninstall -y bpmdetect || true && flatpak install -y --user --reinstall flathub sh.tat.bpmdetect",
"flatpak-lint": "flatpak run --command=flatpak-builder-lint org.flatpak.Builder manifest sh.tat.bpmdetect.yml",
"flatpak-run": "flatpak run sh.tat.bpmdetect",
"flatpak-uninstall": "flatpak uninstall -y sh.tat.bpmdetect",
"format": "clang-format -i src/*.cpp src/*.h && prettier --write . && markdownlint-cli2 --config package.json --configPointer /markdownlint-cli2 --fix",
"qa": "yarn check-spelling && yarn check-formatting"
},
"version": "0.8.9"
}