119 lines
3.6 KiB
JSON
119 lines
3.6 KiB
JSON
{
|
|
"name": "@vuepic/vue-datepicker",
|
|
"version": "3.6.8",
|
|
"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/*",
|
|
"src/**/*",
|
|
"index.d.ts",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/vue-datepicker.js",
|
|
"require": "./dist/vue-datepicker.umd.cjs"
|
|
},
|
|
"./dist/main.css": {
|
|
"import": "./dist/main.css",
|
|
"require": "./dist/main.css"
|
|
},
|
|
"./src/VueDatePicker/style/main.scss": {
|
|
"import": "./src/VueDatePicker/style/main.scss",
|
|
"require": "./src/VueDatePicker/style/main.scss"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "run-s clean build:lib build:css",
|
|
"clean": "rimraf ./dist",
|
|
"build:lib": "run-s typecheck build:es build:browser",
|
|
"typecheck": "vue-tsc --noEmit -p tsconfig.type-check.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 --environment jsdom",
|
|
"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\""
|
|
},
|
|
"devDependencies": {
|
|
"@rushstack/eslint-patch": "^1.2.0",
|
|
"@types/jsdom": "^21.1.0",
|
|
"@types/node": "^18.13.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.51.0",
|
|
"@typescript-eslint/parser": "^5.51.0",
|
|
"@vitejs/plugin-vue": "^4.0.0",
|
|
"@vitest/coverage-c8": "^0.28.4",
|
|
"@vue/eslint-config-prettier": "^7.0.0",
|
|
"@vue/eslint-config-typescript": "^11.0.2",
|
|
"@vue/test-utils": "^2.2.10",
|
|
"@vue/tsconfig": "^0.1.3",
|
|
"c8": "^7.12.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.33.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-vue": "^9.9.0",
|
|
"jsdom": "^21.1.0",
|
|
"minimist": "^1.2.7",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.4.21",
|
|
"prettier": "^2.8.4",
|
|
"rimraf": "^4.1.2",
|
|
"sass": "^1.58.0",
|
|
"sass-loader": "^13.2.0",
|
|
"stylelint": "^14.16.1",
|
|
"stylelint-config-standard-scss": "^6.1.0",
|
|
"terser": "^5.16.3",
|
|
"typescript": "^4.9.5",
|
|
"vite": "^4.1.1",
|
|
"vitest": "^0.28.4",
|
|
"vue": "^3.2.47",
|
|
"vue-tsc": "^1.0.24"
|
|
},
|
|
"dependencies": {
|
|
"date-fns": "^2.29.3",
|
|
"date-fns-tz": "^1.3.7"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": ">=3.2.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Vuepic/vue-datepicker.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Vuepic/vue-datepicker/issues"
|
|
},
|
|
"keywords": [
|
|
"vue",
|
|
"vue-datepicker",
|
|
"datepicker",
|
|
"date",
|
|
"vue3-datepicker",
|
|
"datetimepicker",
|
|
"daterangepicker"
|
|
],
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"not dead"
|
|
]
|
|
}
|