File size: 1,326 Bytes
3d7a5a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202c5e7
 
 
 
 
 
 
 
3d7a5a6
202c5e7
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
{
    "dependencies": {
        "npm-run-all": "^4.1.5"
    },
    "scripts": {
        "start": "pyright && pytest && yarn style",
        "test": "nodemon -w tests -w gradio_ttw_api -x pytest tests",
        "pyright": "nodemon -w gradio_ttw_api -w .venv -e .py -x pyright gradio_ttw_api tests",
        "pytest": "nodemon -w tests -w gradio_ttw_api -e .py -x pytest tests gradio_ttw_api",
        "style": "nodemon -w gradio_ttw_api -w tests -x \"black tests gradio_ttw_api && python -m flake8\"",
        "docstyle": "nodemon -w gradio_ttw_api -w tests -x pydocstyle --convention=google tests gradio_ttw_api",
        "pylint": "nodemon -w gradio_ttw_api -e .py -x pylint gradio_ttw_api",
        "test:gradio_ttw_api": "nodemon -w tests -e .py -x pytest -k gradio_ttw_api tests",
        "publish": "poetry build && poetry publish",
        "black": "black tests gradio_ttw_api",
        "flake8": "flake8 tests gradio_ttw_api",
        "pflake8": "pflake8 tests gradio_ttw_api",
        "pep257": "pep257 tests gradio_ttw_api",
        "final": "run-s docstyle black flake8 pytest",
        "docs:dev": "vitepress dev docs",
        "docs:build": "vitepress build docs",
        "docs:serve": "vitepress serve docs"
    },
    "devDependencies": {
        "vitepress": "^1.0.0-alpha.4",
        "vue": "^3.2.37"
    }
}