-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.29 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
{
"bugs": {
"url": "https://github.com/Tatsh/open-in-mpv/issues"
},
"contributors": ["Andrew Udvare <[email protected]>"],
"description": "Chrome extension to open a URL with mpv.",
"devDependencies": {
"@types/chrome": "^0.0.280",
"cspell": "^8.16.0",
"eslint": "^9.14.0",
"markdownlint-cli2": "^0.15.0",
"prettier": "^3.3.3",
"prettier-plugin-ini": "^1.3.0",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-toml": "^2.0.1",
"pyright": "^1.1.388",
"yarn-audit-fix": "^10.0.9"
},
"homepage": "https://github.com/Tatsh/open-in-mpv",
"keywords": ["chrome-extension", "mpv"],
"license": "MIT",
"markdownlint-cli2": {
"config": {
"MD033": {
"allowed_elements": ["kbd"]
},
"default": true,
"line-length": {
"code_blocks": false,
"line_length": 100
}
}
},
"name": "open-in-mpv",
"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": {
"type": "git",
"url": "git+https://github.com/Tatsh/open-in-mpv.git"
},
"scripts": {
"check-formatting": "yarn prettier -c . && poetry run yapf -prd . && yarn markdownlint-cli2 '**/*.md' '#node_modules'",
"check-spelling": "cspell --no-progress .",
"format": "yarn prettier -w . && poetry run yapf -pri . && yarn markdownlint-cli2 --fix '**/*.md' '#node_modules'",
"gen-docs": "poetry run sphinx-build -T -E -b html -d docs/_build/doctrees -D language=en docs docs/_build/html",
"gen-manpage": "poetry run sphinx-build -T -E -b man -d docs/_build/doctrees -D language=en docs man",
"mypy": "env PYTHONWARNINGS=ignore poetry run mypy",
"qa": "yarn mypy . && poetry run yarn pyright . && yarn ruff . && yarn check-formatting && yarn check-spelling",
"ruff": "poetry run ruff check",
"ruff:fix": "poetry run ruff check --fix",
"test": "poetry run pytest",
"test-video": "poetry run open-in-mpv-test 'https://www.youtube.com/watch?v=5rB7zgPlC5M'"
},
"version": "0.1.0"
}