package.json 2.1 KB
Newer Older
1 2
{
    "name": "@visualdl/i18n",
3
    "version": "2.0.0-beta.43",
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",
P
Peter Pan 已提交
23
        "directory": "frontend/packages/i18n"
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
    },
    "scripts": {
        "build": "tsc",
        "test": "echo \"Error: no test specified\" && exit 0"
    },
    "files": [
        "dist",
        "types.d.ts",
        "middleware.js",
        "middleware.d.ts"
    ],
    "main": "dist/index.js",
    "types": "types.d.ts",
    "dependencies": {
        "detect-node": "2.0.4",
        "hoist-non-react-statics": "3.3.2",
P
Peter Pan 已提交
40 41
        "i18next": "19.4.5",
        "i18next-browser-languagedetector": "4.2.0",
42
        "i18next-fs-backend": "1.0.6",
P
Peter Pan 已提交
43 44
        "i18next-http-backend": "1.0.15",
        "i18next-http-middleware": "2.1.0",
45 46
        "path-match": "1.2.4",
        "prop-types": "15.7.2",
P
Peter Pan 已提交
47
        "react-i18next": "11.5.0",
48 49 50
        "url": "0.11.0"
    },
    "devDependencies": {
51
        "@types/express": "4.17.6",
52
        "@types/hoist-non-react-statics": "3.3.1",
53
        "@types/node": "14.0.13",
P
Peter Pan 已提交
54 55
        "@types/react": "16.9.35",
        "@types/react-dom": "16.9.8",
56
        "typescript": "3.9.5"
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
    },
    "peerDependencies": {
        "express": "^4.17.1",
        "next": "^9.3.4",
        "react": "^16.13.1",
        "react-dom": "^16.13.1"
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
P
Peter Pan 已提交
75
    }
76
}