package.json 1.5 KB
Newer Older
1 2
{
    "name": "@visualdl/cli",
P
Peter Pan 已提交
3
    "version": "2.2.0-1",
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
    "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",
P
Peter Pan 已提交
23
        "directory": "frontend/packages/cli"
24 25 26
    },
    "scripts": {
        "build": "tsc",
27
        "dev": "cross-env NODE_ENV=development ts-node index.ts",
28
        "start": "node index.js",
29
        "test": "echo \"Error: no test specified\" && exit 0"
30 31 32 33 34 35 36
    },
    "bin": "dist/index.js",
    "types": "dist/index.d.ts",
    "files": [
        "dist"
    ],
    "dependencies": {
P
Peter Pan 已提交
37
        "@visualdl/server": "2.2.0-1",
38
        "open": "8.0.9",
39 40
        "ora": "5.4.0",
        "pm2": "4.5.6",
41
        "yargs": "17.0.1"
42 43
    },
    "devDependencies": {
44 45
        "@types/node": "15.3.0",
        "@types/yargs": "16.0.2",
P
Peter Pan 已提交
46 47
        "cross-env": "7.0.3",
        "ts-node": "9.1.1",
48
        "typescript": "4.2.4"
49 50
    },
    "engines": {
51
        "node": ">=12",
52 53 54 55
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
P
Peter Pan 已提交
56
    }
57
}