2021-09-27 06:09:33 +08:00
|
|
|
{
|
2022-01-04 18:43:58 +08:00
|
|
|
"name": "@ctsy/layui-vue",
|
2022-01-06 21:28:58 +08:00
|
|
|
"version": "0.3.3",
|
2021-12-24 10:54:19 +08:00
|
|
|
"author": "sleeprite",
|
|
|
|
"license": "MIT",
|
2021-09-27 06:09:33 +08:00
|
|
|
"description": "a component library for Vue 3 base on layui-vue",
|
2021-12-25 16:24:46 +08:00
|
|
|
"homepage": "http://layui-vue.pearadmin.com",
|
2021-09-27 06:09:33 +08:00
|
|
|
"module": "lib/layui-vue.es.js",
|
2021-11-19 09:16:09 +08:00
|
|
|
"main": "lib/layui-vue.umd.js",
|
2021-12-24 10:54:19 +08:00
|
|
|
"types": "types/index.d.ts",
|
|
|
|
"style": "lib/index.css",
|
|
|
|
"keywords": [
|
|
|
|
"layui-vue",
|
|
|
|
"layui",
|
|
|
|
"vue"
|
|
|
|
],
|
2021-09-27 06:09:33 +08:00
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"import": "./lib/layui-vue.es.js",
|
|
|
|
"require": "./lib/layui-vue.umd.js"
|
|
|
|
},
|
|
|
|
"./lib/": "./lib/"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"dev": "vite",
|
2021-09-29 13:31:24 +08:00
|
|
|
"build": "vite build --emptyOutDir && npm run build:types",
|
2021-09-27 06:09:33 +08:00
|
|
|
"build:types": "rimraf types && tsc -d",
|
2021-12-24 13:42:56 +08:00
|
|
|
"build:example": "vite build example",
|
2021-12-30 00:30:15 +08:00
|
|
|
"lint:eslint": "eslint 'src/**/*.{vue,ts,tsx}' --fix",
|
|
|
|
"lint:prettier": "prettier --write 'src/**/*'",
|
2022-01-04 18:45:45 +08:00
|
|
|
"commit": "git cz",
|
|
|
|
"prepublishOnly": "npm run build"
|
2021-09-27 06:09:33 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-12-15 21:24:40 +08:00
|
|
|
"@layui/hooks-vue": "^0.1.6",
|
2021-12-25 00:36:35 +08:00
|
|
|
"@layui/icons-vue": "^1.0.2",
|
2022-01-02 22:00:42 +08:00
|
|
|
"@layui/layer-vue": "^1.2.4",
|
2021-12-19 07:12:33 +08:00
|
|
|
"async-validator": "^4.0.7",
|
2021-12-27 14:37:45 +08:00
|
|
|
"countup.js": "^2.0.8",
|
2021-12-25 00:09:30 +08:00
|
|
|
"evtd": "^0.2.3",
|
2021-12-27 14:37:45 +08:00
|
|
|
"vue": "^3.2.26",
|
|
|
|
"vue-router": "^4.0.12"
|
2021-09-27 06:09:33 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-11 08:31:59 +08:00
|
|
|
"@babel/core": "^7.15.8",
|
|
|
|
"@babel/preset-env": "^7.15.8",
|
2021-09-29 17:22:33 +08:00
|
|
|
"@babel/preset-typescript": "^7.15.0",
|
2021-10-11 08:31:59 +08:00
|
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
|
|
"@types/markdown-it": "^12.2.3",
|
2021-09-29 17:22:33 +08:00
|
|
|
"@types/markdown-it-container": "^2.0.4",
|
2021-12-15 21:24:40 +08:00
|
|
|
"@types/node": "^16.11.9",
|
2021-12-25 00:09:30 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.8.0",
|
|
|
|
"@typescript-eslint/parser": "^5.8.0",
|
2021-10-11 08:31:59 +08:00
|
|
|
"@vitejs/plugin-vue": "^1.9.3",
|
2021-12-16 21:54:30 +08:00
|
|
|
"@vue/compiler-sfc": "^3.2.26",
|
|
|
|
"@vue/server-renderer": "^3.2.26",
|
2021-12-25 16:24:46 +08:00
|
|
|
"commitizen": "^4.2.4",
|
2021-12-25 14:46:25 +08:00
|
|
|
"cz-conventional-changelog": "3.3.0",
|
2021-09-27 06:09:33 +08:00
|
|
|
"escape-html": "^1.0.3",
|
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-01-06 21:28:58 +08:00
|
|
|
"less": "^4.1.2",
|
2021-09-27 06:09:33 +08:00
|
|
|
"markdown-it-container": "^3.0.0",
|
2021-12-24 13:42:56 +08:00
|
|
|
"prettier": "^2.5.1",
|
2021-09-29 17:22:33 +08:00
|
|
|
"prismjs": "^1.25.0",
|
2021-09-27 06:09:33 +08:00
|
|
|
"rimraf": "^3.0.2",
|
2021-12-24 13:19:24 +08:00
|
|
|
"rollup": "^2.61.0",
|
2021-11-22 11:41:34 +08:00
|
|
|
"typescript": "^4.5.2",
|
2021-12-24 11:20:29 +08:00
|
|
|
"vite": "2.7.6",
|
|
|
|
"vite-plugin-md": "^0.11.6"
|
2021-09-27 06:09:33 +08:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"types"
|
2021-11-16 09:41:46 +08:00
|
|
|
],
|
|
|
|
"browserslist": [
|
|
|
|
"current node",
|
|
|
|
"last 2 versions and > 2%",
|
|
|
|
"ie > 10"
|
2021-12-28 00:57:35 +08:00
|
|
|
]
|
2022-01-06 21:28:58 +08:00
|
|
|
}
|