Skip to content

Commit f5dcdcd

Browse files
committed
chore: Bump version
1 parent f30669a commit f5dcdcd

File tree

1 file changed

+112
-0
lines changed

1 file changed

+112
-0
lines changed

package.json

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
{
2+
"name": "@vuepic/vue-datepicker",
3+
"version": "8.3.1",
4+
"description": "Datepicker component for Vue 3",
5+
"author": "Vuepic",
6+
"private": false,
7+
"license": "MIT",
8+
"homepage": "https://vue3datepicker.com",
9+
"types": "index.d.ts",
10+
"type": "module",
11+
"main": "dist/vue-datepicker.umd.cjs",
12+
"module": "dist/vue-datepicker.js",
13+
"browser": "dist/vue-datepicker.js",
14+
"unpkg": "dist/vue-datepicker.iife.js",
15+
"style": "dist/main.css",
16+
"sass": "src/VueDatePicker/style/main.scss",
17+
"files": [
18+
"dist/*",
19+
"index.d.ts",
20+
"LICENSE",
21+
"README.md"
22+
],
23+
"exports": {
24+
".": {
25+
"import": "./dist/vue-datepicker.js",
26+
"require": "./dist/vue-datepicker.umd.cjs",
27+
"types": "./index.d.ts"
28+
},
29+
"./dist/main.css": {
30+
"import": "./dist/main.css",
31+
"require": "./dist/main.css"
32+
}
33+
},
34+
"scripts": {
35+
"dev": "vite",
36+
"build": "run-s clean typecheck build:lib build:css",
37+
"clean": "rimraf ./dist",
38+
"build:lib": "run-s build:es build:browser",
39+
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
40+
"build:es": "cross-env NODE_ENV=production vite build --mode production",
41+
"build:browser": "cross-env NODE_ENV=production vite -f iife build --mode production",
42+
"build:css": "cross-env NODE_ENV=production node_modules/.bin/sass src/VueDatePicker/style/main.scss dist/main.css --style compressed",
43+
"test": "cross-env NODE_ENV=test vitest",
44+
"test:coverage": "cross-env NODE_ENV=test vitest --environment jsdom run --coverage",
45+
"lint": "run-s lint:style lint:lib",
46+
"lint:style": "stylelint --fix \"src/**/*.scss\"",
47+
"lint:lib": "eslint --fix \"src/**\" --ignore-pattern \"src/**/*.scss\"",
48+
"format": "prettier --write src/"
49+
},
50+
"devDependencies": {
51+
"@rushstack/eslint-patch": "^1.7.2",
52+
"@tsconfig/node20": "^20.1.2",
53+
"@types/jsdom": "^21.1.6",
54+
"@types/minimist": "^1.2.5",
55+
"@types/node": "^20.11.28",
56+
"@vitejs/plugin-vue": "^5.0.4",
57+
"@vitest/coverage-v8": "^1.4.0",
58+
"@vue/eslint-config-prettier": "^9.0.0",
59+
"@vue/eslint-config-typescript": "^13.0.0",
60+
"@vue/test-utils": "^2.4.5",
61+
"@vue/tsconfig": "^0.5.1",
62+
"c8": "^9.1.0",
63+
"cross-env": "^7.0.3",
64+
"eslint": "^8.57.0",
65+
"eslint-plugin-vue": "^9.23.0",
66+
"jsdom": "^24.0.0",
67+
"minimist": "^1.2.8",
68+
"npm-run-all": "^4.1.5",
69+
"postcss": "^8.4.35",
70+
"prettier": "^3.2.5",
71+
"rimraf": "^5.0.5",
72+
"sass": "^1.72.0",
73+
"sass-loader": "^14.1.1",
74+
"stylelint": "^16.2.1",
75+
"stylelint-config-standard-scss": "^13.0.0",
76+
"typescript": "^5.4.2",
77+
"vite": "^5.1.6",
78+
"vitest": "^1.4.0",
79+
"vue": "^3.4.21",
80+
"vue-tsc": "^2.0.6"
81+
},
82+
"dependencies": {
83+
"date-fns": "^3.5.0"
84+
},
85+
"peerDependencies": {
86+
"vue": ">=3.2.0"
87+
},
88+
"engines": {
89+
"node": ">=18.12.0"
90+
},
91+
"repository": {
92+
"type": "git",
93+
"url": "git+https://github.com/Vuepic/vue-datepicker.git"
94+
},
95+
"bugs": {
96+
"url": "https://github.com/Vuepic/vue-datepicker/issues"
97+
},
98+
"keywords": [
99+
"vue-datepicker",
100+
"vue",
101+
"datepicker",
102+
"date",
103+
"vue3-datepicker",
104+
"datetimepicker",
105+
"daterangepicker"
106+
],
107+
"browserslist": [
108+
"> 1%",
109+
"last 2 versions",
110+
"not dead"
111+
]
112+
}

0 commit comments

Comments
 (0)