-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.85 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
{
"name": "vue-calendar-3",
"version": "2.6.6",
"repository": "https://github.com/joffreyBerrier/vue-datepicker",
"funding": "https://github.com/sponsors/joffreyBerrier",
"author": "Joffrey Berrier <joffrey.berrier@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"build:library": "vite build",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"test": "vitest --environment jsdom",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"type": "module",
"main": "./dist/vue-calendar-3.umd.cjs",
"module": "./dist/vue-calendar-3.js",
"exports": {
".": {
"import": "./dist/vue-calendar-3.js",
"require": "./dist/vue-calendar-3.umd.cjs"
},
"./style": "./dist/index.css"
},
"unpkg": "./dist/vue-calendar-3.umd.cjs",
"jsdelivr": "./dist/vue-calendar-3.umd.cjs",
"files": [
"dist/*",
"types/*"
],
"types": "./types/main.d.ts",
"peerDependencies": {
"vue": "^3.2.37"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.13",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.4",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.17",
"c8": "^9.1.0",
"dayjs": "^1.11.10",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.21.0",
"jsdom": "^24.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"tailwindcss": "^3.4.1",
"typescript": "~5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.2",
"vue-tsc": "^1.8.27"
}
}