-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.18 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.18 KB
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
{
"name": "react-github-calendar",
"version": "5.0.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"
},
"exports": {
".": "./build/index.js",
"./tooltips.css": "./build/tooltips.css"
},
"type": "module",
"types": "build/index.d.ts",
"scripts": {
"build": "rollup -c",
"check": "pnpm install --frozen-lockfile && pnpm exec 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",
"publish": "npm publish --access=public"
},
"dependencies": {
"react-activity-calendar": "^3.1.2"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^10.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@tsconfig/bases": "^1.0.23",
"@types/react": "^19.2.9",
"dts-bundle-generator": "^9.5.1",
"eslint": "^10.2.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^7.0.0",
"gh-pages": "^6.3.0",
"globals": "^17.5.0",
"husky": "^9.1.7",
"prettier": "^3.8.2",
"react": "^19.2.5",
"rollup": "^4.60.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-filesize": "^10.0.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"files": [
"build"
],
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}