package.json 1.5 KB
Newer Older
1 2
{
    "name": "@visualdl/serverless",
P
Peter Pan 已提交
3
    "version": "2.0.0-beta.42",
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/serverless"
24 25 26 27 28 29
    },
    "main": "dist/index.html",
    "files": [
        "dist"
    ],
    "scripts": {
P
Peter Pan 已提交
30
        "build": "cross-env ts-node --script-mode build.ts",
31 32 33
        "test": "echo \"Error: no test specified\" && exit 0"
    },
    "devDependencies": {
34
        "@types/node": "13.13.5",
35
        "@types/rimraf": "3.0.0",
P
Peter Pan 已提交
36
        "@visualdl/core": "2.0.0-beta.42",
37 38
        "cross-env": "7.0.2",
        "rimraf": "3.0.2",
39
        "ts-node": "8.10.1",
40 41 42 43 44 45 46 47 48 49 50 51 52 53
        "typescript": "3.8.3"
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    },
P
Peter Pan 已提交
54
    "gitHead": "ed915e4590c1527836cc802d7c6f5011a5b9a4a3"
55
}