-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
103 lines (103 loc) · 2.86 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
{
"name": "vuejs3-datepicker",
"version": "1.1.3",
"description": "Vue 3 datepicker",
"files": [
"build/*"
],
"type": "module",
"module": "./build/vuejs3-datepicker.js",
"main": "./build/vuejs3-datepicker.umd.cjs",
"exports": {
".": {
"import": "./build/vuejs3-datepicker.js",
"require": "./build/vuejs3-datepicker.umd.cjs"
}
},
"scripts": {
"dev": "vite --config vite.config.project.ts",
"cz": "git-cz",
"precommit": "lint-staged",
"build": "vue-tsc && vite build --config vite.config.project.ts",
"build:lib": "vue-tsc && vite build --config vite.config.lib.ts",
"preview": "vite preview",
"lint": "eslint --cache --fix",
"prepublishOnly": "npm run lint && npm run build:lib",
"commit-message": "npm run commitlint -e -V",
"semantic-release:local": "npm run build:lib && semantic-release --no-ci",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"dependencies": {
"prismjs": "^1.22.0",
"vite-plugin-dts": "^3.6.3",
"vue": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.0.1",
"@types/node": "^20.8.10",
"@types/prismjs": "^1.26.2",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-airbnb": "^7.0.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.18.1",
"git-cz": "^4.9.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"postcss-simple-vars": "^7.0.1",
"semantic-release": "^22.0.7",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-libcss": "^1.1.1",
"vue-tsc": "^1.8.5"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.vue": "eslint --cache --fix"
},
"keywords": [
"vue",
"vuejs",
"vue 3",
"javascript",
"typescript",
"vue-component",
"date",
"library",
"month",
"picker",
"datepicker",
"monthpicker"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shubhadip/vuejs3-datepicker.git"
},
"bugs": {
"url": "https://github.com/shubhadip/vuejs3-datepicker/issues"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}