-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2 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
{
"name": "datepicker-enhanced",
"type": "module",
"version": "2.2.1",
"description": "A date picker enhanced component for element-plus, expand the date type.",
"author": "byronogis",
"license": "MIT",
"homepage": "https://github.com/byronogis/datepicker-enhanced#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/byronogis/datepicker-enhanced.git"
},
"bugs": "https://github.com/byronogis/datepicker-enhanced/issues",
"keywords": [
"vue3",
"component",
"element-plus",
"datepicker",
"year",
"half",
"quarter"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.umd.js",
"import": "./dist/index.es.js"
},
"./*": "./*"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:demo": "vite build --config demo/vite.config.ts",
"deploy:demo": "pnpm build:demo && gh-pages -d docs && rimraf docs",
"preview": "vite preview",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"fix": "eslint --fix \"**/*.{vue,ts,js}\"",
"release": "pnpm build && bumpp && npm publish",
"test": "vitest",
"typecheck": "vue-tsc --noEmit",
"git-hook-init": "husky install && husky add .husky/pre-commit 'npm run lint && npm run typecheck'"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.10",
"dayjs": "^1.11.7",
"element-plus": "^2.2.33",
"vue": "3.2.40"
},
"devDependencies": {
"@antfu/eslint-config": "0.29.4",
"@vitejs/plugin-vue": "3.1.2",
"@vue/test-utils": "2.1.0",
"bumpp": "8.2.1",
"eslint": "8.24.0",
"gh-pages": "4.0.0",
"happy-dom": "6.0.4",
"husky": "8.0.1",
"rimraf": "3.0.2",
"typescript": "4.8.4",
"vite": "3.1.4",
"vite-plugin-dts": "1.6.4",
"vitest": "0.23.4",
"vue-tsc": "0.40.13"
}
}