-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.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
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
{
"name": "vue3-datepick",
"version": "1.0.0",
"type": "module",
"files": [
"/dist"
],
"main": "./dist/vue3-datepick.umd.cjs",
"module": "./dist/vue3-datepick.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue3-datepick.js",
"require": "./dist/vue3-datepick.umd.cjs"
}
},
"private": false,
"author": "FAL-coffee",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FAL-coffee/vue3-datepick"
},
"bugs": {
"url": "https://github.com/FAL-coffee/vue3-datepick/issues"
},
"keywords": [
"Vue.js",
"Vue3",
"component",
"datepicker",
"date-picker",
"ja",
"Japanese",
"日本語",
"カレンダー",
"日付",
"date-fns"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"prettier": "prettier --write .",
"lint": "yarn lint:js & yarn lint:style",
"lint:style": "stylelint \"**/*.{css,scss}\" --ignore-path .gitignore",
"lint:js": "eslint --format=stylish --cache --cache-location ./node_modules/.cache/eslint .",
"prepare": "husky install",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"vue": "3.4.19"
},
"dependencies": {
"date-fns": "3.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "6.4.6",
"@testing-library/vue": "8.1.0",
"@types/node": "22.2.0",
"@types/vue": "2.0.0",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"@vitejs/plugin-vue": "5.0.4",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vue": "9.27.0",
"husky": "8.0.0",
"jsdom": "24.1.1",
"lint-staged": "15.2.7",
"prettier": "3.3.3",
"sass": "1.71.1",
"sass-loader": "14.1.1",
"stylelint": "16.7.0",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-config-standard": "36.0.1",
"stylelint-scss": "6.4.1",
"typescript": "5.2.2",
"vite": "5.1.4",
"vite-plugin-css-injected-by-js": "3.4.0",
"vite-plugin-dts": "3.7.3",
"vitepress": "^1.3.4",
"vitest": "2.0.3",
"vue": "3.4.19",
"vue-tsc": "2.0.29"
},
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.2.2",
"wrap-ansi": "7.0.0"
},
"lint-staged": {
"*.{js,ts,vue}": [
"yarn lint:js"
],
"*.{scss,css}": [
"yarn lint:style"
]
}
}