-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
89 lines (89 loc) · 2.61 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
{
"name": "vue-pro-calendar",
"version": "1.1.11-r6",
"scripts": {
"dev": "npm run build-scss && vite",
"build": "npm run build-scss && run-p type-check build-only",
"build-scss": "npx tailwindcss -i ./src/assets/index.scss -o ./src/assets/tailwind.scss",
"build-lib": "npm run build-scss && vite build && vue-tsc --emitDeclarationOnly --allowJs && mv dist/src dist/types",
"preview": "npm run build-scss && vite preview",
"build-only": "npm run build-scss && vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"engines": {
"node": ">=16.20.1",
"npm": ">=8.19.4"
},
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"main": "./dist/vue-pro-calendar.umd.js",
"module": "./dist/vue-pro-calendar.es.js",
"exports": {
".": {
"import": "./dist/vue-pro-calendar.es.js",
"require": "./dist/vue-pro-calendar.umd.js"
},
"./style": {
"import": "./dist/style.css",
"require": "./dist/style.css"
},
"./types": {
"import": "./dist/types/index.d.ts"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/vue-fontawesome": "^3.0.1",
"@popperjs/core": "^2.11.7",
"pinia": "^2.0.23",
"sass": "^1.56.0",
"v-calendar": "3.0.0-alpha.7",
"vite-plugin-i18n-resources": "^1.0.3",
"vue": "^3.2.41",
"vue-i18n": "^9.2.2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@types/node": "^16.18.3",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.13",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.2",
"typescript": "~4.7.4",
"vite": "^3.1.8",
"vue-tsc": "^1.0.8"
},
"keywords": [
"vuejs",
"typescript",
"vite",
"lbgm",
"vue component",
"calendar",
"professional"
],
"description": "Professional Calendar for Vue 3",
"repository": {
"type": "git",
"url": "git+https://github.com/lbgm/vue-pro-calendar.git"
},
"author": "@lbgm",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/lbgm/vue-pro-calendar/issues"
},
"homepage": "https://github.com/lbgm/vue-pro-calendar#readme"
}