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-29 22:32:31 +08:00
|
|
|
"dev:demand": "pnpm -C ./package/document dev:demand",
|
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-04-13 23:17:12 +08:00
|
|
|
"prepare": "husky install",
|
2022-04-24 00:41:50 +08:00
|
|
|
"commit": "git add . && git-cz && git push"
|
2022-02-21 01:09:24 +08:00
|
|
|
},
|
2022-04-05 10:31:31 +08:00
|
|
|
"dependencies": {
|
|
|
|
"@layui/layui-vue": "workspace:*",
|
|
|
|
"@layui/icons-vue": "workspace:*",
|
|
|
|
"@layui/layer-vue": "workspace:*",
|
2022-06-06 22:34:16 +08:00
|
|
|
"vue": "^3.2.37"
|
2021-09-27 06:09:33 +08:00
|
|
|
},
|
2022-04-05 10:31:31 +08:00
|
|
|
"peerDependencies": {
|
2022-06-06 22:34:16 +08:00
|
|
|
"vue": "^3.2.37"
|
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-04-24 00:36:00 +08:00
|
|
|
"commitlint-config-cz": "^0.13.3",
|
2022-06-07 11:09:55 +08:00
|
|
|
"cz-conventional-changelog": "^3.3.0",
|
2022-04-24 00:36:00 +08:00
|
|
|
"cz-customizable": "^6.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-06-07 11:09:55 +08:00
|
|
|
"husky": "^8.0.1",
|
|
|
|
"prettier": "^2.6.2",
|
2022-05-11 09:31:41 +08:00
|
|
|
"@babel/core": "^7.17.9",
|
|
|
|
"@babel/preset-env": "^7.15.8",
|
|
|
|
"@babel/preset-typescript": "^7.15.0",
|
|
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
|
|
"@types/node": "^16.11.9",
|
2022-05-16 23:51:30 +08:00
|
|
|
"@vitejs/plugin-vue": "^2.3.3",
|
2022-06-06 22:47:24 +08:00
|
|
|
"@vue/compiler-sfc": "^3.2.37",
|
|
|
|
"@vue/server-renderer": "^3.2.37",
|
2022-05-11 09:31:41 +08:00
|
|
|
"less": "^4.1.2",
|
|
|
|
"rimraf": "^3.0.2",
|
2022-06-06 23:05:23 +08:00
|
|
|
"rollup": "^2.75.5",
|
2022-06-06 22:58:44 +08:00
|
|
|
"typescript": "^4.7.3",
|
2022-06-17 23:33:54 +08:00
|
|
|
"vite": "2.9.12"
|
2021-09-27 06:09:33 +08:00
|
|
|
},
|
2022-02-16 15:53:40 +08:00
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
2022-04-24 00:36:00 +08:00
|
|
|
"path": "node_modules/cz-customizable"
|
2022-02-16 15:53:40 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
|
|
}
|
|
|
|
}
|
2022-04-24 00:41:50 +08:00
|
|
|
}
|