Skip to content

Commit

Permalink
chore: Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasenkoo committed Mar 17, 2024
1 parent f30669a commit f5dcdcd
Showing 1 changed file with 112 additions and 0 deletions.
112 changes: 112 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
{
"name": "@vuepic/vue-datepicker",
"version": "8.3.1",
"description": "Datepicker component for Vue 3",
"author": "Vuepic",
"private": false,
"license": "MIT",
"homepage": "https://vue3datepicker.com",
"types": "index.d.ts",
"type": "module",
"main": "dist/vue-datepicker.umd.cjs",
"module": "dist/vue-datepicker.js",
"browser": "dist/vue-datepicker.js",
"unpkg": "dist/vue-datepicker.iife.js",
"style": "dist/main.css",
"sass": "src/VueDatePicker/style/main.scss",
"files": [
"dist/*",
"index.d.ts",
"LICENSE",
"README.md"
],
"exports": {
".": {
"import": "./dist/vue-datepicker.js",
"require": "./dist/vue-datepicker.umd.cjs",
"types": "./index.d.ts"
},
"./dist/main.css": {
"import": "./dist/main.css",
"require": "./dist/main.css"
}
},
"scripts": {
"dev": "vite",
"build": "run-s clean typecheck build:lib build:css",
"clean": "rimraf ./dist",
"build:lib": "run-s build:es build:browser",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"build:es": "cross-env NODE_ENV=production vite build --mode production",
"build:browser": "cross-env NODE_ENV=production vite -f iife build --mode production",
"build:css": "cross-env NODE_ENV=production node_modules/.bin/sass src/VueDatePicker/style/main.scss dist/main.css --style compressed",
"test": "cross-env NODE_ENV=test vitest",
"test:coverage": "cross-env NODE_ENV=test vitest --environment jsdom run --coverage",
"lint": "run-s lint:style lint:lib",
"lint:style": "stylelint --fix \"src/**/*.scss\"",
"lint:lib": "eslint --fix \"src/**\" --ignore-pattern \"src/**/*.scss\"",
"format": "prettier --write src/"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@tsconfig/node20": "^20.1.2",
"@types/jsdom": "^21.1.6",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.4.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",
"c8": "^9.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"jsdom": "^24.0.0",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"sass": "^1.72.0",
"sass-loader": "^14.1.1",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vitest": "^1.4.0",
"vue": "^3.4.21",
"vue-tsc": "^2.0.6"
},
"dependencies": {
"date-fns": "^3.5.0"
},
"peerDependencies": {
"vue": ">=3.2.0"
},
"engines": {
"node": ">=18.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vuepic/vue-datepicker.git"
},
"bugs": {
"url": "https://github.com/Vuepic/vue-datepicker/issues"
},
"keywords": [
"vue-datepicker",
"vue",
"datepicker",
"date",
"vue3-datepicker",
"datetimepicker",
"daterangepicker"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}

0 comments on commit f5dcdcd

Please sign in to comment.