forked from nathanreyes/v-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.65 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
{
"name": "@stafftastic/v-calendar",
"type": "module",
"version": "3.1.2",
"description": "A calendar and date picker plugin for Vue.js.",
"author": "Nathan Reyes <[email protected]>",
"repository": "https://github.com/nathanreyes/v-calendar",
"homepage": "https://vcalendar.io",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"jsdelivr": "dist/iife/index.js",
"unpkg": "dist/iife/index.js",
"types": "dist/types/src/index.d.ts",
"keywords": [
"vue",
"vue3",
"vuejs",
"plugin",
"calendar",
"v-calendar",
"datepicker",
"date picker"
],
"license": "MIT",
"files": [
"src",
"dist",
"package.json",
"README.md"
],
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": {
"node": "./dist/mjs/index.mjs",
"default": "./dist/es/index.js"
},
"require": "./dist/cjs/index.js"
},
"./style.css": "./dist/style.css",
"./dist/*": "./dist/*"
},
"scripts": {
"build": "tsx build/build.ts",
"build:docs": "cd docs && yarn build",
"build:all": "yarn build && yarn build:docs",
"test": "vitest",
"lint": "eslint . --ext .js,.vue",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,vue}\""
},
"dependencies": {
"@types/lodash": "^4.14.165",
"@types/resize-observer-browser": "^0.1.7",
"date-fns": "^2.16.1",
"date-fns-tz": "^2.0.0",
"lodash": "^4.17.20",
"vue-screen-utils": "^1.0.0-beta.13"
},
"peerDependencies": {
"@popperjs/core": "^2.0.0",
"vue": "^3.2.0"
},
"devDependencies": {
"@popperjs/core": "^2.11.6",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.0",
"@vue/eslint-config-prettier": "6.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.3.2",
"autoprefixer": "^9.7.8",
"eslint": "^8.17.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-vue": "^9.1.1",
"jsdom": "^21.1.1",
"lint-staged": "^10.4.2",
"postcss": "^8.0.0",
"postcss-import": "^14.0.2",
"postcss-inline-svg": "^4.1.0",
"postcss-nested": "^4.2.1",
"postcss-simple-vars": "5.0.2",
"postcss-url": "^8.0.0",
"prettier": "^3.0.3",
"regenerator-runtime": "^0.13.9",
"resize-observer-polyfill": "^1.5.1",
"rollup-plugin-visualizer": "^5.5.4",
"terser": "^5.16.1",
"tslib": "^2.4.0",
"tsx": "^3.12.2",
"typescript": "^4.8.4",
"vite": "^4.0.4",
"vitest": "^0.29.7",
"vue": "^3.2.0",
"vue-tsc": "^1.0.24"
}
}