forked from Vuepic/vue-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.83 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
{
"name": "@vuepic/vue-datepicker",
"version": "3.3.1",
"description": "Datepicker component for Vue 3",
"author": "Vuepic",
"private": false,
"license": "MIT",
"homepage": "https://vue3datepicker.com",
"types": "index.d.ts",
"main": "dist/vue-datepicker.umd.js",
"module": "dist/vue-datepicker.es.js",
"browser": "dist/vue-datepicker.es.js",
"unpkg": "dist/vue-datepicker.iife.js",
"style": "dist/main.css",
"sass": "src/VueDatePicker/style/main.scss",
"files": [
"dist/*",
"src/**/*",
"index.d.ts"
],
"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",
"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.1.4",
"@types/jsdom": "^16.2.14",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.2",
"@vue/tsconfig": "^0.1.3",
"c8": "^7.11.3",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.2.0",
"jsdom": "^20.0.0",
"minimist": "^1.2.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"stylelint": "^14.9.1",
"stylelint-config-standard-scss": "^4.0.0",
"typescript": "^4.7.4",
"vite": "^2.9.13",
"vitest": "^0.17.0",
"vue": "^3.2.37",
"vue-tsc": "^0.38.2"
},
"dependencies": {
"date-fns": "^2.28.0"
},
"peerDependencies": {
"vue": ">=3.2.0"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/Vuepic/vue-datepicker.git"
},
"keywords": [
"calendar",
"vue",
"vue3-datepicker",
"vue-datepicker",
"datepicker",
"datetimepicker",
"daterangepicker",
"timepicker"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}