package.json 1.6 KB
Newer Older
1
{
2
    "name": "@visualdl/icons",
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
    "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",
23
        "directory": "frontend/packages/icons"
24
    },
25 26 27 28
    "main": "index.js",
    "module": "index.js",
    "type": "module",
    "types": "index.d.ts",
29
    "files": [
30 31 32 33
        "index.js",
        "index.d.ts",
        "svgs",
        "components"
34
    ],
35 36 37
    "scripts": {
        "build": "node build.js",
        "test": "echo \"Error: no test specified\" && exit 0"
38 39
    },
    "devDependencies": {
40 41 42 43 44 45 46 47 48 49 50
        "@babel/core": "7.14.3",
        "@babel/preset-react": "7.13.13",
        "@svgr/core": "5.5.0",
        "@svgr/plugin-jsx": "5.5.0",
        "@svgr/plugin-svgo": "5.5.0",
        "camelcase": "6.2.0",
        "fs-extra": "10.0.0",
        "svgo": "2.3.0"
    },
    "peerDependencies": {
        "react": "^16.0.0 || ^17.0.0"
51 52
    },
    "engines": {
53
        "node": ">=12",
54 55 56 57
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
P
Peter Pan 已提交
58
    }
59
}