package.json 1.7 KB
Newer Older
P
Peter Pan 已提交
1 2
{
    "name": "@visualdl/demo",
P
Peter Pan 已提交
3
    "version": "2.0.0",
P
Peter Pan 已提交
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
    "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/packages/demo"
    },
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "files": [
        "dist"
    ],
    "scripts": {
        "build": "rimraf dist && ts-node --script-mode builder/index.ts && tsc && cpy data dist/ --parents",
32
        "test": "echo \"Error: no test specified\" && exit 0"
P
Peter Pan 已提交
33 34
    },
    "devDependencies": {
35
        "@types/express": "4.17.8",
P
Peter Pan 已提交
36
        "@types/mkdirp": "1.0.1",
37
        "@types/node": "14.6.3",
P
Peter Pan 已提交
38
        "@types/node-fetch": "2.5.7",
39
        "@types/rimraf": "3.0.0",
P
Peter Pan 已提交
40 41 42 43 44 45
        "cpy-cli": "3.1.1",
        "get-port": "5.1.1",
        "mime-types": "2.1.27",
        "mkdirp": "1.0.4",
        "node-fetch": "2.6.0",
        "rimraf": "3.0.2",
46 47
        "ts-node": "9.0.0",
        "typescript": "4.0.2"
P
Peter Pan 已提交
48 49 50 51 52
    },
    "peerDependencies": {
        "express": "^4.17.1"
    },
    "engines": {
53
        "node": ">=12",
P
Peter Pan 已提交
54 55 56 57 58 59
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    }
}