package.json 1.8 KB
Newer Older
1 2
{
    "name": "@visualdl/netron",
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 23 24 25 26
    "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
    },
    "files": [
        "dist"
    ],
    "main": "dist/index.html",
    "dependencies": {
        "d3": "5.16.0",
        "dagre": "0.8.5",
36
        "flatbuffers": "1.12.0",
37
        "long": "4.0.0",
38
        "marked": "2.0.3",
P
Peter Pan 已提交
39
        "netron": "PeterPanZH/netron",
40
        "pako": "1.0.11"
41 42
    },
    "devDependencies": {
43 44
        "autoprefixer": "10.2.5",
        "copy-webpack-plugin": "8.1.1",
45
        "css-loader": "5.2.4",
46
        "html-webpack-plugin": "5.3.1",
47 48 49
        "mini-css-extract-plugin": "1.6.0",
        "postcss": "8.2.15",
        "postcss-loader": "5.3.0",
50
        "rimraf": "3.0.2",
51 52 53 54 55
        "sass": "1.32.13",
        "sass-loader": "11.1.1",
        "terser": "5.7.0",
        "webpack": "5.37.1",
        "webpack-cli": "4.7.0"
56 57
    },
    "engines": {
58
        "node": ">=12",
59 60 61 62 63 64
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    }
}