package.json 1.3 KB
Newer Older
1 2
{
    "name": "@visualdl/app",
P
Peter Pan 已提交
3
    "version": "2.0.0-beta.33",
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
    "private": true,
    "description": "A platform to visualize the deep learning process and result.",
    "keywords": [
        "visualdl",
        "paddlepaddle",
        "visualization",
        "deep learning"
    ],
    "homepage": "https://github.com/PaddlePaddle/VisualDL",
    "bugs": {
        "url": "https://github.com/PaddlePaddle/VisualDL/issues"
    },
    "license": "Apache-2.0",
    "author": "PeterPanZH <littlepanzh@gmail.com> (https://github.com/PeterPanZH)",
    "contributors": [
        "Niandalu <littlepanzh@gmail.com> (https://github.com/Niandalu)"
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/PaddlePaddle/VisualDL.git",
        "directory": "frontend/app"
    },
    "scripts": {
        "dev": "electron index.js",
        "build": "electron-builder -mwl",
        "test": "echo \"Error: no test specified\" && exit 0"
    },
    "dependencies": {
P
Peter Pan 已提交
32
        "@visualdl/server": "2.0.0-beta.33",
33
        "pm2": "4.4.0"
34 35
    },
    "devDependencies": {
36 37
        "electron": "8.2.5",
        "electron-builder": "22.6.0"
38 39 40 41 42 43 44 45 46 47 48 49 50 51
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    }
}