layui/package/component/package.json

71 lines
1.8 KiB
JSON
Raw Normal View History

2022-04-05 10:31:31 +08:00
{
"name": "@layui/layui-vue",
2022-05-02 00:36:25 +08:00
"version": "1.0.6",
2022-04-05 10:31:31 +08:00
"author": "就眠儀式",
"license": "MIT",
"description": "a component library for Vue 3 base on layui-vue",
2022-04-18 23:27:23 +08:00
"homepage": "http://www.layui-vue.com",
2022-04-23 23:44:18 +08:00
"main": "es/index.js",
2022-04-05 10:31:31 +08:00
"unpkg": "umd/index.js",
"jsdelivr": "umd/index.js",
"types": "types/index.d.ts",
"style": "lib/index.css",
"keywords": [
"layui-vue",
"layui",
"vue"
],
"exports": {
".": {
2022-04-23 23:44:18 +08:00
"import": "./es/index.js"
2022-04-05 10:31:31 +08:00
},
"./lib/": "./lib/",
2022-04-23 23:44:18 +08:00
"./es/": "./es/"
2022-04-05 10:31:31 +08:00
},
"scripts": {
2022-04-23 23:44:18 +08:00
"build": "npm run build:all && npm run build:es && npm run build:umd && npm run build:types",
"build:es": "vite build --emptyOutDir --config ./script/build.es.ts",
2022-04-05 10:31:31 +08:00
"build:all": "vite build --emptyOutDir --config ./script/build.all.ts",
"build:umd": "vite build --emptyOutDir --config ./script/build.umd.ts",
2022-04-09 03:31:27 +08:00
"build:types": "rimraf types && tsc -d"
2022-04-05 10:31:31 +08:00
},
"dependencies": {
2022-04-21 00:09:15 +08:00
"@layui/icons-vue": "^1.0.8",
"@layui/layer-vue": "^1.3.13",
2022-05-01 20:41:10 +08:00
"@vueuse/core": "^8.3.1",
2022-04-14 17:12:47 +08:00
"animate.css": "^4.1.1",
2022-04-05 10:31:31 +08:00
"async-validator": "^4.0.7",
"cropperjs": "^1.5.12",
"darkreader": "^4.9.46",
2022-04-14 17:12:47 +08:00
"dayjs": "^1.11.0",
2022-04-05 10:31:31 +08:00
"evtd": "^0.2.3",
"uuid": "^8.3.2",
2022-05-01 20:41:10 +08:00
"vue-i18n": "^9.1.9"
2022-04-05 10:31:31 +08:00
},
"devDependencies": {
"@babel/core": "^7.17.9",
2022-04-05 10:31:31 +08:00
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@types/node": "^16.11.9",
"@vitejs/plugin-vue": "^2.3.1",
2022-04-21 00:09:15 +08:00
"@vue/compiler-sfc": "^3.2.33",
"@vue/server-renderer": "^3.2.33",
2022-04-05 10:31:31 +08:00
"less": "^4.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
2022-04-05 11:56:17 +08:00
"typescript": "^4.6.3",
2022-04-21 00:09:15 +08:00
"vite": "2.9.2"
2022-04-05 10:31:31 +08:00
},
"files": [
"lib",
2022-04-23 23:44:18 +08:00
"es",
2022-04-05 10:31:31 +08:00
"umd",
"types"
],
"browserslist": [
"current node",
"last 2 versions and > 2%",
"ie > 10"
]
}