forked from Vuepic/vue-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@vuepic/vue-datepicker",
"version": "6.1.0",
"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",
"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.3.3",
"@tsconfig/node18": "^18.2.1",
"@types/jsdom": "^21.1.2",
"@types/node": "^18.17.11",
"@vitejs/plugin-vue": "^4.3.4",
"@vitest/coverage-v8": "^0.34.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"c8": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^22.1.0",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^11.0.0",
"terser": "^5.19.4",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.3",
"vue": "^3.3.4",
"vue-tsc": "^1.8.10"
},
"dependencies": {
"date-fns": "^2.30.0",
"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-datepicker",
"vue",
"datepicker",
"date",
"vue3-datepicker",
"datetimepicker",
"daterangepicker"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}