-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
114 lines (114 loc) · 3.09 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
106
107
108
109
110
111
112
113
114
{
"name": "@alireza-ab/vue3-persian-datepicker",
"description": "A datepicker component for select date (vue 3)",
"version": "1.0.5",
"files": [
"dist/*",
"src/*"
],
"main": "./dist/index-umd.js",
"module": "./dist/index-es.js",
"exports": {
".": {
"types": "./dist/DatePicker.vue.d.ts",
"import": "./dist/index-es.js",
"require": "./dist/index-umd.js"
},
"./nuxt": {
"import": "./dist/nuxt/index.mjs",
"require": "./dist/nuxt/index.cjs"
}
},
"type": "module",
"scripts": {
"dev": "vite",
"build:lib": "rollup -c",
"build:dts": "vue-tsc -d --emitDeclarationOnly src/components/DatePicker.vue --outDir dist",
"build:nuxt": "unbuild",
"build": "rm -rf dist && pnpm build:nuxt && pnpm build:lib && pnpm build:dts",
"test": "cypress run --component",
"test:open": "cypress open --component",
"lint": "eslint",
"pretty": "prettier -w -u .",
"cz": "cz"
},
"homepage": "https://alireza-ab.ir/datepicker",
"bugs": {
"url": "https://github.com/alireza-ab/vue3-persian-datepicker/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/alireza-ab/vue3-persian-datepicker.git"
},
"author": "Alireza Alibeiki <[email protected]>",
"keywords": [
"javascript",
"js",
"vue 3",
"nuxt 3",
"vuejs",
"nuxtjs",
"date",
"persian",
"jalali",
"shamsi",
"datepicker",
"persian datepicker",
"jalali datepicker",
"shamsi datepicker",
"range datepicker",
"persian range datepicker",
"vue datepicker",
"vue persian datepicker",
"vue persian range datepicker",
"nuxt datepicker",
"nuxt persian datepicker",
"nuxt persian range datepicker"
],
"dependencies": {
"@alireza-ab/persian-date": "^2.6.2",
"@nuxt/kit": "^3.15.0"
},
"devDependencies": {
"@cypress/vue": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.2.0",
"commitizen": "^4.3.1",
"cypress": "^13.17.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"typescript": "5.7.2",
"unbuild": "^3.2.0",
"vite": "^6.0.6",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0",
"yorkie": "^2.0.0"
},
"gitHooks": {
"prepare-commit-msg": "exec < /dev/tty && cz --hook || true",
"pre-commit": "pnpm pretty && pnpm lint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"license": "MIT"
}