-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
120 lines (120 loc) · 3.68 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
115
116
117
118
119
120
{
"name": "qalendar",
"description": "Event calendar and date picker for Vue 3",
"version": "3.9.0",
"homepage": "https://tomosterlund.github.io/qalendar/",
"repository": {
"type": "git",
"url": "https://github.com/tomosterlund/qalendar"
},
"bugs": {
"url": "https://github.com/tomosterlund/qalendar/issues"
},
"author": {
"name": "Tom Osterlund"
},
"contributors": [
{
"name": "Felix Scholze",
"url": "webshaped.de",
"email": "felix@webshaped.de"
}
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && tsc --emitDeclarationOnly && rm -rf dist/cypress",
"preview": "vite preview --port 5050",
"prepare": "npm run build",
"test:unit": "vitest --environment jsdom",
"test:docker": "docker-compose up --build",
"test:e2e": "cypress open -- --e2e",
"test:e2e:ci": "./node_modules/.bin/cypress run --env type=actual --config screenshotsFolder=cypress/snapshots/mac/actual",
"test:e2e:record": "./node_modules/.bin/cypress run --env type=base --config screenshotsFolder=cypress/snapshots/mac/base",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"lint:scss": "stylelint src/styles/**/*.{scss,sass} src/components/**/*.vue",
"format": "prettier . --write",
"seed": "node ./development/faker/seed.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs --port=8080",
"publish:beta": "npm publish --tag beta"
},
"files": [
"dist"
],
"main": "./dist/qalendar.umd.js",
"module": "./dist/qalendar.es.js",
"exports": {
".": {
"import": "./dist/qalendar.es.js",
"require": "./dist/qalendar.umd.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"types": "./dist/src/index.d.ts",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-regular-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"perfect-scrollbar": "^1.5.5",
"test": "^3.3.0"
},
"devDependencies": {
"@babel/types": "7.22.5",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"@rushstack/eslint-patch": "1.3.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jsdom": "21.1.1",
"@types/node": "18.16.19",
"@types/unidecode": "^0.1.1",
"@vitejs/plugin-vue": "5.1.4",
"@vitest/coverage-c8": "^0.32.0",
"@vue/eslint-config-prettier": "8.0.0",
"@vue/eslint-config-typescript": "12.0.0",
"@vue/test-utils": "2.4.0",
"@vue/tsconfig": "0.1.0",
"cypress": "12.11.0",
"cypress-visual-regression": "^3.0.0",
"eslint": "8.44.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-vue": "9.15.1",
"husky": "8.0.3",
"jsdom": "22.1.0",
"postcss-html": "1.5.0",
"postcss-scss": "4.0.6",
"prettier": "3.1.0",
"sass": "1.63.6",
"semantic-release": "23.0.2",
"start-server-and-test": "2.0.0",
"stylelint": "15.9.0",
"stylelint-config-recommended-vue": "1.4.0",
"stylelint-config-standard": "33.0.0",
"stylelint-config-standard-scss": "10.0.0",
"typescript": "5.1.6",
"unidecode": "^0.1.8",
"vite": "5.4.8",
"vitepress": "1.4.0",
"vitest": "0.32.4",
"vue": "^3.5.11",
"vue-router": "4.2.2",
"vue-tsc": "1.8.3"
},
"keywords": [
"calendar",
"datepicker",
"vue",
"vue 3",
"vue-component"
],
"license": "MIT"
}