2021-09-27 06:09:33 +08:00
|
|
|
{
|
2021-12-24 10:54:19 +08:00
|
|
|
"license": "MIT",
|
2021-09-27 06:09:33 +08:00
|
|
|
"description": "a component library for Vue 3 base on layui-vue",
|
2022-03-18 14:48:38 +08:00
|
|
|
"homepage": "http://www.layui-vue.com",
|
2021-09-27 06:09:33 +08:00
|
|
|
"scripts": {
|
2022-04-05 10:31:31 +08:00
|
|
|
"dev": "pnpm -C ./package/document dev",
|
2022-04-05 22:39:06 +08:00
|
|
|
"build": "npm run build:icons && npm run build:layer && npm run build:component && npm run build:document",
|
2022-04-05 10:31:31 +08:00
|
|
|
"build:document": "pnpm -C ./package/document build",
|
2022-04-05 19:09:04 +08:00
|
|
|
"build:component": "pnpm -C ./package/component build",
|
|
|
|
"build:icons": "pnpm -C ./package/icons build",
|
|
|
|
"build:layer": "pnpm -C ./package/layer build",
|
2022-04-06 03:55:16 +08:00
|
|
|
"publish:component": "pnpm -C ./package/component publish",
|
2022-04-05 19:09:04 +08:00
|
|
|
"generate:icons": "pnpm -C ./package/icons generate",
|
2022-04-05 10:31:31 +08:00
|
|
|
"lint:eslint": "eslint 'package/**/*.{vue,ts,tsx}' --fix",
|
|
|
|
"lint:prettier": "prettier --write \"package/**/*.{vue,ts}\"",
|
2022-04-09 03:31:27 +08:00
|
|
|
"postinstall": "npm run build",
|
2022-02-21 01:09:24 +08:00
|
|
|
"prepare": "husky install"
|
|
|
|
},
|
2022-04-05 10:31:31 +08:00
|
|
|
"dependencies": {
|
|
|
|
"@layui/layui-vue": "workspace:*",
|
|
|
|
"@layui/icons-vue": "workspace:*",
|
|
|
|
"@layui/layer-vue": "workspace:*",
|
2022-02-21 01:09:24 +08:00
|
|
|
"vue": "^3.2.31"
|
2021-09-27 06:09:33 +08:00
|
|
|
},
|
2022-04-05 10:31:31 +08:00
|
|
|
"peerDependencies": {
|
|
|
|
"vue": "^3.2.31"
|
2021-09-27 06:09:33 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-16 15:53:40 +08:00
|
|
|
"@commitlint/cli": "^16.2.1",
|
|
|
|
"@commitlint/config-conventional": "^16.2.1",
|
2021-12-25 00:09:30 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.8.0",
|
|
|
|
"@typescript-eslint/parser": "^5.8.0",
|
2021-12-25 16:24:46 +08:00
|
|
|
"commitizen": "^4.2.4",
|
2022-02-16 15:53:40 +08:00
|
|
|
"cz-conventional-changelog": "^3.3.0",
|
2021-12-25 00:09:30 +08:00
|
|
|
"eslint": "^8.5.0",
|
2021-12-25 14:36:54 +08:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2021-12-25 14:46:25 +08:00
|
|
|
"eslint-plugin-vue": "^8.2.0",
|
2022-02-16 15:53:40 +08:00
|
|
|
"husky": "^7.0.4",
|
2022-04-05 10:31:31 +08:00
|
|
|
"prettier": "^2.5.1"
|
2021-09-27 06:09:33 +08:00
|
|
|
},
|
2022-02-16 15:53:40 +08:00
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
|
|
}
|
|
|
|
}
|
2022-02-24 11:09:45 +08:00
|
|
|
}
|