2021-09-26 22:09:33 +00:00
|
|
|
{
|
2022-01-08 03:29:42 +00:00
|
|
|
"name": "@layui/layui-vue",
|
2022-02-24 03:09:45 +00:00
|
|
|
"version": "0.3.9-alpha.2",
|
2022-02-20 17:09:24 +00:00
|
|
|
"author": "就眠儀式",
|
2021-12-24 02:54:19 +00:00
|
|
|
"license": "MIT",
|
2021-09-26 22:09:33 +00:00
|
|
|
"description": "a component library for Vue 3 base on layui-vue",
|
2021-12-25 08:24:46 +00:00
|
|
|
"homepage": "http://layui-vue.pearadmin.com",
|
2022-01-27 08:18:16 +00:00
|
|
|
"main": "es/index.js",
|
2021-12-24 02:54:19 +00:00
|
|
|
"types": "types/index.d.ts",
|
|
|
|
"style": "lib/index.css",
|
|
|
|
"keywords": [
|
|
|
|
"layui-vue",
|
|
|
|
"layui",
|
|
|
|
"vue"
|
|
|
|
],
|
2021-09-26 22:09:33 +00:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2022-01-27 08:18:16 +00:00
|
|
|
"import": "./es/index.js"
|
2021-09-26 22:09:33 +00:00
|
|
|
},
|
2022-01-27 08:18:16 +00:00
|
|
|
"./lib/": "./lib/",
|
|
|
|
"./es/": "./es/"
|
2021-09-26 22:09:33 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2022-02-05 21:20:07 +00:00
|
|
|
"dev": "vite example",
|
2022-02-25 02:10:33 +00:00
|
|
|
"build": "npm run build:all && npm run build:es && npm run build:types && npm run build:example",
|
2022-02-17 04:29:20 +00:00
|
|
|
"build:es": "vite build --emptyOutDir --config ./script/build.es.ts",
|
|
|
|
"build:all": "vite build --emptyOutDir --config ./script/build.all.ts",
|
2021-09-26 22:09:33 +00:00
|
|
|
"build:types": "rimraf types && tsc -d",
|
2021-12-24 05:42:56 +00:00
|
|
|
"build:example": "vite build example",
|
2021-12-29 16:30:15 +00:00
|
|
|
"lint:eslint": "eslint 'src/**/*.{vue,ts,tsx}' --fix",
|
2022-02-16 09:23:42 +00:00
|
|
|
"lint:prettier": "prettier --write \"src/**/*.{vue,ts}\"",
|
2022-02-20 17:09:24 +00:00
|
|
|
"commit": "git add . && git-cz && git push",
|
|
|
|
"prepare": "husky install"
|
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"vue": "^3.2.31"
|
2021-09-26 22:09:33 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-02-20 17:09:24 +00:00
|
|
|
"@layui/icons-vue": "^1.0.7",
|
|
|
|
"@layui/layer-vue": "^1.3.5",
|
2022-02-24 03:09:45 +00:00
|
|
|
"@vueuse/core": "^7.6.2",
|
2021-12-18 23:12:33 +00:00
|
|
|
"async-validator": "^4.0.7",
|
2021-12-27 06:37:45 +00:00
|
|
|
"countup.js": "^2.0.8",
|
2021-12-24 16:09:30 +00:00
|
|
|
"evtd": "^0.2.3",
|
2022-02-20 10:22:39 +00:00
|
|
|
"vue": "^3.2.31",
|
2022-02-10 01:56:17 +00:00
|
|
|
"vue-i18n": "^9.1.9",
|
2021-12-27 06:37:45 +00:00
|
|
|
"vue-router": "^4.0.12"
|
2021-09-26 22:09:33 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-11 00:31:59 +00:00
|
|
|
"@babel/core": "^7.15.8",
|
|
|
|
"@babel/preset-env": "^7.15.8",
|
2021-09-29 09:22:33 +00:00
|
|
|
"@babel/preset-typescript": "^7.15.0",
|
2022-02-22 06:36:46 +00:00
|
|
|
"@babel/types": "7.17.0",
|
2022-02-16 07:53:40 +00:00
|
|
|
"@commitlint/cli": "^16.2.1",
|
|
|
|
"@commitlint/config-conventional": "^16.2.1",
|
2021-10-11 00:31:59 +00:00
|
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
|
|
"@types/markdown-it": "^12.2.3",
|
2021-09-29 09:22:33 +00:00
|
|
|
"@types/markdown-it-container": "^2.0.4",
|
2021-12-15 13:24:40 +00:00
|
|
|
"@types/node": "^16.11.9",
|
2021-12-24 16:09:30 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.8.0",
|
|
|
|
"@typescript-eslint/parser": "^5.8.0",
|
2021-10-11 00:31:59 +00:00
|
|
|
"@vitejs/plugin-vue": "^1.9.3",
|
2022-02-20 10:22:39 +00:00
|
|
|
"@vue/compiler-sfc": "^3.2.31",
|
|
|
|
"@vue/server-renderer": "^3.2.31",
|
2021-12-25 08:24:46 +00:00
|
|
|
"commitizen": "^4.2.4",
|
2022-02-16 07:53:40 +00:00
|
|
|
"cz-conventional-changelog": "^3.3.0",
|
2021-09-26 22:09:33 +00:00
|
|
|
"escape-html": "^1.0.3",
|
2021-12-24 16:09:30 +00:00
|
|
|
"eslint": "^8.5.0",
|
2021-12-25 06:36:54 +00:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2021-12-25 06:46:25 +00:00
|
|
|
"eslint-plugin-vue": "^8.2.0",
|
2022-02-16 07:53:40 +00:00
|
|
|
"husky": "^7.0.4",
|
2022-01-06 13:28:58 +00:00
|
|
|
"less": "^4.1.2",
|
2021-09-26 22:09:33 +00:00
|
|
|
"markdown-it-container": "^3.0.0",
|
2021-12-24 05:42:56 +00:00
|
|
|
"prettier": "^2.5.1",
|
2021-09-29 09:22:33 +00:00
|
|
|
"prismjs": "^1.25.0",
|
2021-09-26 22:09:33 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2022-01-29 01:53:48 +00:00
|
|
|
"rollup": "^2.66.1",
|
|
|
|
"typescript": "^4.5.5",
|
|
|
|
"vite": "2.7.13",
|
2021-12-24 03:20:29 +00:00
|
|
|
"vite-plugin-md": "^0.11.6"
|
2021-09-26 22:09:33 +00:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib",
|
2022-01-27 08:18:16 +00:00
|
|
|
"es",
|
2021-09-26 22:09:33 +00:00
|
|
|
"types"
|
2021-11-16 01:41:46 +00:00
|
|
|
],
|
|
|
|
"browserslist": [
|
|
|
|
"current node",
|
|
|
|
"last 2 versions and > 2%",
|
|
|
|
"ie > 10"
|
2022-02-16 07:53:40 +00:00
|
|
|
],
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
|
|
}
|
|
|
|
}
|
2022-02-24 03:09:45 +00:00
|
|
|
}
|