This repository has been archived by the owner on Jan 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.06 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
{
"name": "add-to-calendar-button-vue",
"version": "2.0.0",
"engines": {
"node": ">=14.20.0"
},
"description": "Deprecated Vue.js wrapper for the add to calendar button snippet.",
"type": "module",
"files": [
"dist",
"tests"
],
"main": "./dist/atcb.umd.cjs",
"module": "./dist/atcb.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/atcb.js",
"require": "./dist/atcb.umd.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/add2cal/add-to-calendar-button-vue.git"
},
"keywords": [
"vue",
"javascript",
"widget",
"generator",
"component",
"calendar",
"event",
"free",
"snippet",
"outlook",
"add-to-calendar",
"add-to-calendar-button",
"add-event"
],
"author": {
"name": "Jens Kuerschner",
"url": "https://jenskuerschner.de/"
},
"license": "ELv2",
"bugs": {
"url": "https://github.com/add2cal/add-to-calendar-button/issues"
},
"homepage": "https://add-to-calendar-button.com/",
"scripts": {
"eslint": "npx eslint .",
"eslint:fix": "npm run eslint -- --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run eslint:fix && npm run prettier:fix",
"test": "vitest",
"serve": "vite preview",
"build": "vite build && vue-tsc --emitDeclarationOnly"
},
"dependencies": {
"add-to-calendar-button": "~1.18.8"
},
"devDependencies": {
"@testing-library/vue": "^6.6.1",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-commonjs": "^1.0.2",
"eslint-plugin-security": "^1.6.0",
"jsdom": "^21.1.0",
"prettier": "2.8.3",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.27.3",
"vue": "^3.2.45",
"vue-tsc": "^1.0.24"
},
"peerDependencies": {
"vue": "^3.0.0"
}
}