package.json 1.8 KB
Newer Older
R
RotPublic 已提交
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 27 28 29 30 31 32 33 34 35 36 37
{
    "name": "@visualdl/netron2",
    "version": "2.2.1",
    "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",
        "test": "echo \"Error: no test specified\" && exit 0"
    },
    "files": [
        "dist"
    ],
    "main": "dist/index.html",
    "dependencies": {
        "d3": "5.16.0",
        "dagre": "0.8.5",
        "flatbuffers": "1.12.0",
        "long": "4.0.0",
38
        "marked": "4.0.10",
R
RotPublic 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
        "netron": "PeterPanZH/netron",
        "pako": "1.0.11"
    },
    "devDependencies": {
        "autoprefixer": "10.3.4",
        "copy-webpack-plugin": "9.0.1",
        "css-loader": "6.2.0",
        "html-webpack-plugin": "5.3.2",
        "mini-css-extract-plugin": "2.2.2",
        "postcss": "8.3.6",
        "postcss-loader": "6.1.1",
        "rimraf": "3.0.2",
        "sass": "1.39.0",
        "sass-loader": "12.1.0",
        "terser": "5.7.2",
        "webpack": "5.52.0",
        "webpack-cli": "4.8.0"
    },
    "engines": {
        "node": ">=12",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    }
}