-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.58 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
{
"name": "vue-day-calendar",
"version": "1.1.6",
"type": "module",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"files": [
"dist"
],
"keywords": [
"vue",
"dayPicker",
"calendar"
],
"author": "AntzyMo <[email protected]>",
"scripts": {
"dev": "vite build -w",
"build": "vite build",
"docs": "pnpm run build && pnpm -C ./docs dev",
"docs:build": "pnpm run build && pnpm -C ./docs build",
"test": "vitest",
"release": "bumpp package.json"
},
"dependencies": {
"@iconify-json/mingcute": "^1.1.17",
"dayjs": "^1.11.10",
"vue": "^3.4.21"
},
"devDependencies": {
"@antzy/eslint-config": "^3.2.6",
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/test-utils": "^2.4.6",
"bumpp": "^9.4.0",
"eslint": "^8.57.0",
"jsdom": "^24.0.0",
"sass": "^1.77.1",
"typescript": "^5.2.2",
"unplugin-icons": "^0.18.5",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AntzyMo/vue-day-calendar.git"
},
"bugs": {
"url": "https://github.com/AntzyMo/vue-day-calendar.git/issues"
},
"homepage": "https://github.com/AntzyMo/vue-day-calendar"
}