hongluan-business-ui
Version:
Hongluan Business Component Library for Vue 3
115 lines (114 loc) • 2.49 kB
JSON
{
"name": "hongluan-business-ui",
"version": "4.2.5",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push-todo-open": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix"
},
"workspaces": [
"packages/*"
],
"description": "Hongluan Business Component Library for Vue 3",
"keywords": ["Vue3", "Component Library", "Composition API", "ViteJS"],
"repository": {
"type": "git",
"url": "https://github.com/cestc-aqyj/hongluan-business-ui.git"
},
"homepage": "https://cestc-aqyj.github.io/hongluan-business-ui/",
"license": "MIT",
"peerDependencies": {
"hongluan-ui": "^2.2.0"
},
"devDependencies": {
"@types/node": "*",
"csstype": "^3.0.0",
"vue-router": "^4.0.0"
},
"dependencies": {
"@vueuse/core": "^9.1.0",
"dayjs": "^1.11.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"lodash-unified": "^1.0.1",
"html2canvas": "*",
"resize-observer-polyfill": "^1.5.1"
},
"files": [
"lib",
"es",
"dist",
"theme",
"global.d.ts",
"README.md"
],
"exports": {
".": {
"require": "./lib/index.js",
"import": "./es/index.mjs"
},
"./es": {
"types": "./es/index.d.ts",
"import": "./es/index.mjs"
},
"./lib": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js"
},
"./es/*.mjs": {
"types": "./es/*.d.ts",
"import": "./es/*.mjs"
},
"./es/*": {
"types": [
"./es/*.d.ts",
"./es/*/index.d.ts"
],
"import": "./es/*.mjs"
},
"./lib/*.js": {
"types": "./lib/*.d.ts",
"require": "./lib/*.js"
},
"./lib/*": {
"types": [
"./lib/*.d.ts",
"./lib/*/index.d.ts"
],
"require": "./lib/*.js"
},
"./*": "./*"
},
"main": "lib/index.js",
"module": "es/index.mjs",
"style": "dist/index.css",
"unpkg": "dist/index.full.js",
"jsdelivr": "dist/index.full.js",
"sideEffects": [
"dist/*",
"theme/*.css",
"theme/scss/*.scss",
"lib/components/**/*",
"es/components/**/*"
],
"vetur": {
"tags": "lib/tags.json",
"attributes": "lib/attributes.json"
},
"web-types": "lib/web-types.json",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}