layui/package.json

71 lines
2.4 KiB
JSON
Raw Normal View History

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-06-25 20:10:12 +08:00
"dev": "pnpm -C ./package/document-component dev",
"dev:layer": "pnpm -C ./package/document-layer 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-06-25 20:10:12 +08:00
"build:document": " npm run build:document-component && npm run build:document-layer",
"build:document-component": "pnpm -C ./package/document-component build",
"build:document-layer": "pnpm -C ./package/document-layer 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",
"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": {
"@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",
"commitlint-config-cz": "^0.13.3",
2022-06-07 11:09:55 +08:00
"cz-conventional-changelog": "^3.3.0",
"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",
"@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",
"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
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}