package.json 1.3 KB
Newer Older
1 2
{
    "name": "@visualdl/wasm",
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
    "title": "VisualDL",
    "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",
P
Peter Pan 已提交
24
        "directory": "frontend/packages/wasm"
25 26 27 28 29 30
    },
    "files": [
        "dist/index_bg.wasm",
        "dist/index.js",
        "dist/index.d.ts"
    ],
31
    "main": "dist/index.js",
32 33 34
    "module": "dist/index.js",
    "types": "dist/index.d.ts",
    "scripts": {
35 36
        "build": "wasm-pack build --release --out-dir dist --out-name index --target web .",
        "test": "echo \"Error: no test specified\" && exit 0"
37 38 39 40 41
    },
    "devDependencies": {
        "wasm-pack": "0.9.1"
    },
    "engines": {
42
        "node": ">=12",
43 44 45 46
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
P
Peter Pan 已提交
47
    }
48
}