-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "react-contributors",
"version": "2.0.0",
"description": "A lightweight React component for displaying GitHub repository contributors",
"keywords": [
"contributors",
"collaborators",
"react",
"github"
],
"author": "evert-arias",
"license": "MIT",
"repository": "evert-arias/react-contributors",
"main": "dist/react-contributors.umd.js",
"module": "dist/react-contributors.es.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-contributors.es.js",
"require": "./dist/react-contributors.umd.js"
}
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "vite build",
"dev": "cd demo && npm run dev",
"demo:install": "cd demo && npm install",
"demo:build": "cd demo && npm run build",
"demo:preview": "cd demo && npm run preview",
"predeploy": "npm run build && npm run demo:install && npm run demo:build",
"deploy": "gh-pages -d demo/dist",
"release": "npm run build && npm version patch && git push && git push --tags"
},
"dependencies": {
"@octokit/rest": "^21.1.1"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/node": "^22.13.8",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-styled-components": "^2.1.4",
"gh-pages": "^6.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}