big update

This commit is contained in:
2023-09-20 14:09:22 +03:00
parent f58a5106eb
commit 56c40021ba
35 changed files with 1049 additions and 324 deletions

View File

@@ -1,23 +1,25 @@
{
"name": "axp-ui",
"descriiption": "My helper ui lib",
"version": "1.6.3",
"version": "1.7.0",
"homepage": "https://antoxahub.ru/antoxa/axp-ui",
"repository": {
"type": "git",
"url": "https://antoxahub.ru/antoxa/axp-ui.git"
},
"module": "./dist/index.js",
"module": "./dist/index.mjs",
"main": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
"import": "./dist/index.mjs",
"requier": "./dist/index.umd.js"
},
"./styles/": [
"./src/css/"
],
"./tailwind.config": "./tailwind.config.ts"
"./tailwind.config": "./tailwind.config.ts",
"./style.css": "./dist/style.css",
"./style/*": "./src/style/*",
"./tsconfig.json": "./tsconfig.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"tsconfig.json",
@@ -25,23 +27,23 @@
"src/css"
],
"scripts": {
"build": "rollup -c --configPlugin rollup-plugin-typescript2",
"build": "vite build",
"dev": "vite",
"prepare": "npm run build"
},
"dependencies": {
"axp-ts": "^1.9.6",
"peerDependencies": {
"axp-ts": "^1.9.10",
"vue": "^3.3.4"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"postcss": "^8.4.27",
"@vitejs/plugin-vue": "^4.3.4",
"autoprefixer": "^10.4.15",
"postcss": "^8.4.29",
"prettier": "^2.8.8",
"rollup": "^3.27.0",
"rollup-plugin-sass": "^1.12.20",
"rollup-plugin-typescript2": "^0.35.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.64.2",
"sass": "^1.66.1",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.1"
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3"
}
}