mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-22 10:30:34 +03:00
deps: upgrade
This commit is contained in:
+18
-18
@@ -7,26 +7,26 @@
|
|||||||
"preview": "nuxt preview"
|
"preview": "nuxt preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@nuxt/content": "^2.12.1",
|
"@nuxt/content": "^2.13.4",
|
||||||
"@nuxt/eslint-config": "^0.2.0",
|
"@nuxt/eslint-config": "^0.7.2",
|
||||||
"@nuxtjs/color-mode": "^3.3.3",
|
"@nuxtjs/color-mode": "^3.5.2",
|
||||||
"@nuxtjs/google-fonts": "^3.2.0",
|
"@nuxtjs/google-fonts": "^3.2.0",
|
||||||
"@tailwindcss/typography": "^0.5.10",
|
"@tailwindcss/typography": "^0.5.15",
|
||||||
"@vue/eslint-config-prettier": "^9.0.0",
|
"@vue/eslint-config-prettier": "^10.1.0",
|
||||||
"@vue/eslint-config-typescript": "^13.0.0",
|
"@vue/eslint-config-typescript": "^14.1.4",
|
||||||
"autoprefixer": "^10.4.19",
|
"autoprefixer": "^10.4.20",
|
||||||
"eslint": "^8.57.0",
|
"eslint": "^9.16.0",
|
||||||
"eslint-plugin-prettier": "^5.1.3",
|
"eslint-plugin-prettier": "^5.2.1",
|
||||||
"eslint-plugin-vue": "^9.23.0",
|
"eslint-plugin-vue": "^9.32.0",
|
||||||
"nuxt": "3.11.1",
|
"nuxt": "3.14.1592",
|
||||||
"nuxt-svgo": "^4.0.0",
|
"nuxt-svgo": "^4.0.9",
|
||||||
"prettier": "^3.2.5",
|
"prettier": "^3.4.2",
|
||||||
"prettier-plugin-tailwindcss": "^0.5.12"
|
"prettier-plugin-tailwindcss": "^0.6.9"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@headlessui/vue": "^1.7.19",
|
"@headlessui/vue": "^1.7.23",
|
||||||
"@heroicons/vue": "^2.1.1",
|
"@heroicons/vue": "^2.2.0",
|
||||||
"@vueuse/core": "^10.9.0",
|
"@vueuse/core": "^12.0.0",
|
||||||
"tailwindcss": "^3.4.1"
|
"tailwindcss": "^3.4.16"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+100
-100
@@ -1,104 +1,104 @@
|
|||||||
{
|
{
|
||||||
"name": "vue-select",
|
"name": "vue-select",
|
||||||
"version": "4.0.0-beta.6",
|
"version": "4.0.0-beta.6",
|
||||||
"description": "Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.",
|
"description": "Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.",
|
||||||
"author": "Jeff Sagal <sagalbot@gmail.com>",
|
"author": "Jeff Sagal <sagalbot@gmail.com>",
|
||||||
"homepage": "https://vue-select.org",
|
"homepage": "https://vue-select.org",
|
||||||
"directories": {
|
"directories": {
|
||||||
"doc": "docs",
|
"doc": "docs",
|
||||||
"test": "tests"
|
"test": "tests"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"dist"
|
||||||
|
],
|
||||||
|
"main": "./dist/vue-select.umd.js",
|
||||||
|
"module": "./dist/vue-select.es.js",
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"import": "./dist/vue-select.es.js",
|
||||||
|
"require": "./dist/vue-select.umd.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"./dist/vue-select.css": {
|
||||||
"dist"
|
"import": "./dist/vue-select.css",
|
||||||
],
|
"require": "./dist/vue-select.css",
|
||||||
"main": "./dist/vue-select.umd.js",
|
"style": "./dist/vue-select.css"
|
||||||
"module": "./dist/vue-select.es.js",
|
|
||||||
"exports": {
|
|
||||||
".": {
|
|
||||||
"import": "./dist/vue-select.es.js",
|
|
||||||
"require": "./dist/vue-select.umd.js"
|
|
||||||
},
|
|
||||||
"./dist/vue-select.css": {
|
|
||||||
"import": "./dist/vue-select.css",
|
|
||||||
"require": "./dist/vue-select.css",
|
|
||||||
"style": "./dist/vue-select.css"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"private": false,
|
|
||||||
"license": "MIT",
|
|
||||||
"prepare": "npm run build",
|
|
||||||
"scripts": {
|
|
||||||
"dev:docs": "cd docs && yarn dev",
|
|
||||||
"build:docs": "cd docs && yarn generate",
|
|
||||||
"semantic-release": "semantic-release",
|
|
||||||
"commit": "git-cz",
|
|
||||||
"dev": "vite",
|
|
||||||
"build": "vue-tsc --noEmit && vite build",
|
|
||||||
"preview": "vite preview --port 5050",
|
|
||||||
"test": "vitest --environment jsdom",
|
|
||||||
"coverage": "vitest --run --coverage --environment jsdom --silent",
|
|
||||||
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
|
||||||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/sagalbot/vue-select.git"
|
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"vue": "3.x"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@rushstack/eslint-patch": "^1.8.0",
|
|
||||||
"@semantic-release/git": "^10.0.1",
|
|
||||||
"@semantic-release/github": "^10.0.2",
|
|
||||||
"@types/jsdom": "^21.1.6",
|
|
||||||
"@types/node": "^20.11.30",
|
|
||||||
"@vitejs/plugin-vue": "^5.0.4",
|
|
||||||
"@vitest/coverage-c8": "^0.33.0",
|
|
||||||
"@vue/eslint-config-prettier": "^9.0.0",
|
|
||||||
"@vue/eslint-config-typescript": "^13.0.0",
|
|
||||||
"@vue/test-utils": "^2.4.5",
|
|
||||||
"@vue/tsconfig": "^0.5.1",
|
|
||||||
"autoprefixer": "^10.4.19",
|
|
||||||
"bundlewatch": "^0.3.3",
|
|
||||||
"commitizen": "^4.3.0",
|
|
||||||
"coveralls": "^3.1.1",
|
|
||||||
"cross-env": "^7.0.3",
|
|
||||||
"cz-conventional-changelog": "3.3.0",
|
|
||||||
"eslint": "^8.57.0",
|
|
||||||
"eslint-plugin-vue": "^9.23.0",
|
|
||||||
"jsdom": "^24.0.0",
|
|
||||||
"postcss-nested": "^6.0.1",
|
|
||||||
"prettier": "^3.2.5",
|
|
||||||
"semantic-release": "^23.0.5",
|
|
||||||
"typescript": "^5.4.3",
|
|
||||||
"vite": "^5.2.2",
|
|
||||||
"vitest": "^1.4.0",
|
|
||||||
"vue": "^3.4.21",
|
|
||||||
"vue-tsc": "^2.0.7"
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"commitizen": {
|
|
||||||
"path": "./node_modules/cz-conventional-changelog"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"bundlewatch": {
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"path": "./dist/vue-select.es.js",
|
|
||||||
"compression": "gzip",
|
|
||||||
"maxSize": "8 KB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/vue-select.umd.js",
|
|
||||||
"compression": "gzip",
|
|
||||||
"maxSize": "7 KB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/vue-select.css",
|
|
||||||
"compression": "gzip",
|
|
||||||
"maxSize": "2 KB"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"private": false,
|
||||||
|
"license": "MIT",
|
||||||
|
"prepare": "npm run build",
|
||||||
|
"scripts": {
|
||||||
|
"dev:docs": "cd docs && yarn dev",
|
||||||
|
"build:docs": "cd docs && yarn generate",
|
||||||
|
"semantic-release": "semantic-release",
|
||||||
|
"commit": "git-cz",
|
||||||
|
"dev": "vite",
|
||||||
|
"build": "vue-tsc --noEmit && vite build",
|
||||||
|
"preview": "vite preview --port 5050",
|
||||||
|
"test": "vitest --environment jsdom",
|
||||||
|
"coverage": "vitest --run --coverage --environment jsdom --silent",
|
||||||
|
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
||||||
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/sagalbot/vue-select.git"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"vue": "3.x"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@rushstack/eslint-patch": "^1.10.4",
|
||||||
|
"@semantic-release/git": "^10.0.1",
|
||||||
|
"@semantic-release/github": "^11.0.1",
|
||||||
|
"@types/jsdom": "^21.1.7",
|
||||||
|
"@types/node": "^22.10.2",
|
||||||
|
"@vitejs/plugin-vue": "^5.2.1",
|
||||||
|
"@vitest/coverage-v8": "^2.1.8",
|
||||||
|
"@vue/eslint-config-prettier": "^10.1.0",
|
||||||
|
"@vue/eslint-config-typescript": "^14.1.4",
|
||||||
|
"@vue/test-utils": "^2.4.6",
|
||||||
|
"@vue/tsconfig": "^0.7.0",
|
||||||
|
"autoprefixer": "^10.4.20",
|
||||||
|
"bundlewatch": "^0.4.0",
|
||||||
|
"commitizen": "^4.3.1",
|
||||||
|
"coveralls": "^3.1.1",
|
||||||
|
"cross-env": "^7.0.3",
|
||||||
|
"cz-conventional-changelog": "3.3.0",
|
||||||
|
"eslint": "^9.16.0",
|
||||||
|
"eslint-plugin-vue": "^9.32.0",
|
||||||
|
"jsdom": "^25.0.1",
|
||||||
|
"postcss-nested": "^7.0.2",
|
||||||
|
"prettier": "^3.4.2",
|
||||||
|
"semantic-release": "^24.2.0",
|
||||||
|
"typescript": "^5.7.2",
|
||||||
|
"vite": "^6.0.3",
|
||||||
|
"vitest": "^2.1.8",
|
||||||
|
"vue": "^3.5.13",
|
||||||
|
"vue-tsc": "^2.1.10"
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"commitizen": {
|
||||||
|
"path": "./node_modules/cz-conventional-changelog"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"bundlewatch": {
|
||||||
|
"files": [
|
||||||
|
{
|
||||||
|
"path": "./dist/vue-select.es.js",
|
||||||
|
"compression": "gzip",
|
||||||
|
"maxSize": "8 KB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "./dist/vue-select.umd.js",
|
||||||
|
"compression": "gzip",
|
||||||
|
"maxSize": "7 KB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "./dist/vue-select.css",
|
||||||
|
"compression": "gzip",
|
||||||
|
"maxSize": "2 KB"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
+10303
-8000
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user