-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
98 lines (98 loc) · 2.5 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
{
"name": "add-to-calendar-button-react",
"version": "2.7.3",
"engines": {
"node": ">=18.17.0",
"npm": ">=9.6.7"
},
"description": "Convenient React wrapper for the add to calendar button snippet, which lets you reliably create beautiful buttons, where people can add events to their calendars.",
"type": "module",
"files": [
"dist",
"tests"
],
"main": "./dist/atcb.umd.cjs",
"module": "./dist/atcb.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/atcb.js",
"require": "./dist/atcb.umd.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/add2cal/add-to-calendar-button-react.git"
},
"keywords": [
"react",
"javascript",
"css",
"microsoft",
"apple",
"google",
"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",
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly",
"test": "vitest",
"test:coverage": "vitest --coverage",
"preview": "vite preview",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^2.1.3",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-security": "^3.0.1",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"vite": "^5.4.9",
"vitest": "^2.1.3"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"add-to-calendar-button": "^2.7.3"
}
}