package.json 1.8 KB
Newer Older
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
{
    "name": "@visualdl/netron",
    "version": "2.0.0-beta.43",
    "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/netron"
    },
    "scripts": {
        "build": "rimraf dist && webpack",
27
        "test": "echo \"Error: no test specified\" && exit 0; #"
28 29 30 31 32 33 34 35 36 37
    },
    "files": [
        "dist"
    ],
    "main": "dist/index.html",
    "dependencies": {
        "d3": "5.16.0",
        "dagre": "0.8.5",
        "long": "4.0.0",
        "marked": "1.1.0",
P
Peter Pan 已提交
38
        "netron": "PeterPanZH/netron",
39 40 41 42
        "pako": "1.0.11",
        "protobufjs": "lutzroeder/protobuf.js#b9a9d027589356226f4704f9d77f2639f52172f3"
    },
    "devDependencies": {
P
Peter Pan 已提交
43
        "autoprefixer": "9.8.4",
44
        "copy-webpack-plugin": "6.0.3",
P
Peter Pan 已提交
45
        "css-loader": "3.6.0",
46 47 48 49
        "html-webpack-plugin": "4.3.0",
        "mini-css-extract-plugin": "0.9.0",
        "postcss-loader": "3.0.0",
        "rimraf": "3.0.2",
P
Peter Pan 已提交
50
        "sass": "1.26.9",
51
        "sass-loader": "9.0.0",
P
Peter Pan 已提交
52
        "terser": "4.8.0",
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
        "webpack": "4.43.0"
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    }
}