-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 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
{
"contributors": [
"Andrew Udvare <[email protected]>"
],
"devDependencies": {
"cspell": "^8.15.3",
"markdownlint-cli2": "^0.14.0",
"prettier": "^3.3.3",
"prettier-plugin-ini": "^1.3.0",
"prettier-plugin-toml": "^2.0.1",
"prettier-plugin-sort-json": "^4.0.0",
"yarn-audit-fix": "^10.0.13"
},
"license": "MIT",
"name": "yt-dlp-types",
"prettier": {
"endOfLine": "lf",
"iniSpaceAroundEquals": true,
"jsonRecursiveSort": true,
"overrides": [
{
"files": [
"package.json"
],
"options": {
"parser": "json"
}
}
],
"plugins": [
"prettier-plugin-ini",
"prettier-plugin-sort-json",
"prettier-plugin-toml"
],
"printWidth": 100,
"singleQuote": true
},
"repository": "[email protected]:Tatsh/types-yt-dlp.git",
"scripts": {
"check-formatting": "prettier -c '.*/**/*.json' '.*/**/*.y*ml' './**/*.md' './**/*.toml' './**/*.yml' ./.prettierrc && poetry run yapf -rd yt_dlp-stubs/*/*.pyi yt_dlp-stubs/*.pyi",
"check-spelling": "cspell --no-progress './**/*' './**/.*'",
"format": "prettier -w '.*/**/*.json' '.*/**/*.y*ml' './**/*.md' './**/*.toml' './**/*.yml' ./.prettierrc && poetry run yapf -ri yt_dlp-stubs/*/*.pyi yt_dlp-stubs/*.pyi",
"fix-pluggy": "touch \"$(poetry run python -c 'import inspect, os, pluggy; print(os.path.dirname(inspect.getabsfile(pluggy)))')/py.typed\"",
"mypy": "yarn fix-pluggy && poetry run mypy .",
"ruff": "poetry run ruff check --fix .",
"qa": "yarn ruff && yarn check-spelling && yarn check-formatting",
"test": "poetry run pytest"
},
"version": "0.0.13"
}