layui/package/component/package.json

59 lines
1.5 KiB
JSON
Raw Normal View History

2022-04-05 02:31:31 +00:00
{
"name": "@layui/layui-vue",
"version": "1.7.11",
2022-04-05 02:31:31 +00:00
"author": "就眠儀式",
"license": "MIT",
"description": "a component library for Vue 3 base on layui-vue",
2022-04-18 15:27:23 +00:00
"homepage": "http://www.layui-vue.com",
2022-04-23 15:44:18 +00:00
"main": "es/index.js",
2022-04-05 02:31:31 +00:00
"unpkg": "umd/index.js",
"jsdelivr": "umd/index.js",
"types": "types/index.d.ts",
"style": "lib/index.css",
"type": "module",
"keywords": [
2022-06-07 02:55:21 +00:00
"vue",
"vue-component",
"component-library",
2022-04-05 02:31:31 +00:00
"layui-vue",
2022-06-07 02:55:21 +00:00
"layui"
2022-04-05 02:31:31 +00:00
],
"exports": {
".": {
2022-04-23 15:44:18 +00:00
"import": "./es/index.js"
2022-04-05 02:31:31 +00:00
},
"./lib/": "./lib/",
2022-04-23 15:44:18 +00:00
"./es/": "./es/"
2022-04-05 02:31:31 +00:00
},
"scripts": {
2022-09-16 17:21:25 +00:00
"build": "npm run build:all && npm run build:es && npm run build:umd && npm run build:types",
2022-04-23 15:44:18 +00:00
"build:es": "vite build --emptyOutDir --config ./script/build.es.ts",
2022-09-16 17:21:25 +00:00
"build:all": "vite build --emptyOutDir --config ./script/build.all.ts",
2022-04-05 02:31:31 +00:00
"build:umd": "vite build --emptyOutDir --config ./script/build.umd.ts",
2022-04-08 19:31:27 +00:00
"build:types": "rimraf types && tsc -d"
2022-04-05 02:31:31 +00:00
},
"dependencies": {
2023-11-20 03:28:49 +00:00
"@ctrl/tinycolor": "^3.4.1",
2022-05-22 05:05:14 +00:00
"@layui/icons-vue": "^1.0.9",
2022-12-09 08:41:41 +00:00
"@layui/layer-vue": "git+https://git.theluyuan.com/luyuan/layui-layer.git",
2022-10-22 14:36:33 +00:00
"@umijs/ssr-darkreader": "^4.9.45",
2023-11-20 03:28:49 +00:00
"@vueuse/core": "^9.2.0",
2022-05-16 16:02:16 +00:00
"async-validator": "^4.1.1",
2022-04-05 02:31:31 +00:00
"cropperjs": "^1.5.12",
2022-04-14 09:12:47 +00:00
"dayjs": "^1.11.0",
2022-04-05 02:31:31 +00:00
"evtd": "^0.2.3",
2023-11-20 03:28:49 +00:00
"vue-i18n": "^9.1.10",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz"
2022-04-05 02:31:31 +00:00
},
"files": [
"lib",
2022-04-23 15:44:18 +00:00
"es",
2022-04-05 02:31:31 +00:00
"umd",
"types"
],
"browserslist": [
"current node",
"last 2 versions and > 2%",
"ie > 10"
]
}