-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
76 lines (76 loc) · 2.25 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
{
"name": "react-github-calendar",
"version": "4.5.6",
"description": " React component to display a GitHub contributions calendar",
"author": "Jonathan Gruber <gruberjonathan@gmail.com>",
"license": "MIT",
"homepage": "https://grubersjoe.github.io/react-github-calendar/",
"repository": {
"type": "git",
"url": "git+https://github.com/grubersjoe/react-github-calendar.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "rollup -c",
"check": "pnpx prettier -c . && pnpm exec tsc && pnpm lint",
"deploy": "gh-pages -d example/build",
"dev": "rollup -c -w",
"format": "prettier --write .",
"lint": "eslint .",
"postbuild": "dts-bundle-generator src/index.tsx -o build/index.d.ts --no-check --no-banner",
"predeploy": "pnpm build && cd example && pnpm install && pnpm build",
"prepare": "husky",
"prepublishOnly": "pnpm check && pnpm build"
},
"dependencies": {
"react-activity-calendar": "^2.7.8",
"react-error-boundary": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.25.7",
"@eslint/js": "^9.21.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/node": "^22.13.9",
"@types/react": "^19.0.10",
"@types/tinycolor2": "^1.4.6",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.21.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.2.0",
"gh-pages": "^6.3.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"react": "^19.0.0",
"rollup": "^4.34.9",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"pnpm": {
"overrides": {
"react": "^19",
"@types/react": "^19"
}
},
"files": [
"build"
],
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
]
}