cnchar/package.json

77 lines
2.5 KiB
JSON
Raw Normal View History

2020-04-06 01:51:13 +08:00
{
"name": "cnchar",
2021-12-16 17:33:38 +08:00
"version": "3.0.5",
2020-04-11 14:46:57 +08:00
"description": "功能全面、多端支持的汉字拼音笔画js库支持多音字、繁体字、火星文",
2020-04-06 01:51:13 +08:00
"main": "index.html",
"author": "theajack <contact@theajack.com>",
"license": "MIT",
"keywords": [
"cnchar",
"chinese-character",
"chinese-pinyin",
"chinese-character-strokes",
"traditional-chinese",
"chinese-character-tools",
"汉字拼音",
"汉字笔画",
"汉字笔顺",
"繁体字",
"汉字工具"
],
"scripts": {
"start": "webpack-dev-server --open --config webpack-config/dev.js",
"dev": "webpack-dev-server --open --config webpack-config/dev.js",
2020-12-17 22:18:08 +08:00
"build": "node ./helper/build.js",
"publish": "node ./helper/publish.js",
2020-04-06 01:51:13 +08:00
"lint": "eslint src --ext js",
2021-01-18 11:57:53 +08:00
"test": "node local_test npm",
2021-01-14 18:07:28 +08:00
"jest": "jest",
2020-12-09 15:40:54 +08:00
"dev:docs": "vuepress dev vuepress",
2020-12-17 22:18:08 +08:00
"build:docs": "vuepress build vuepress && node ./helper/build-docs.js"
2020-04-06 01:51:13 +08:00
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
2021-07-29 23:47:36 +08:00
"@types/jest": "^24.9.1",
2020-12-09 17:09:44 +08:00
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
2020-04-06 01:51:13 +08:00
"@vuepress/plugin-back-to-top": "^1.0.0-rc.1",
"@vuepress/plugin-medium-zoom": "^1.0.0-rc.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
2020-04-11 14:46:57 +08:00
"easy-icon": "^1.0.2",
2020-04-06 01:51:13 +08:00
"element-ui": "^2.10.1",
"eslint": "^6.7.2",
"eslint-loader": "^3.0.3",
"eslint-plugin-html": "^6.0.0",
2021-07-29 23:47:36 +08:00
"eslint-plugin-jest": "^24.4.0",
2020-12-09 18:09:14 +08:00
"eslint-plugin-vue": "^7.2.0",
2020-04-06 01:51:13 +08:00
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
2020-04-14 19:02:13 +08:00
"gulp-markdown-toc": "^1.1.0",
2020-04-06 01:51:13 +08:00
"gulp-rename": "^1.4.0",
"highlight.js": "^9.15.8",
"husky": "^3.1.0",
2021-01-14 18:07:28 +08:00
"jest": "^24.7.1",
2020-04-06 01:51:13 +08:00
"less": "^3.9.0",
"less-loader": "^5.0.0",
2021-01-14 18:07:28 +08:00
"ts-jest": "^24.0.2",
2020-12-09 17:09:44 +08:00
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
2020-04-06 01:51:13 +08:00
"vue": "^2.5.2",
"vue-highlight.js": "^2.2.0",
"vuepress": "^1.0.2",
2021-01-28 02:18:28 +08:00
"vuepress-plugin-tc-comment": "0.0.5",
2020-04-06 01:51:13 +08:00
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}