-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "vercount-react",
"version": "0.1.2",
"type": "module",
"description": "The React component for Vercount, a simple website counter powered by NextJS.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"keywords": [
"react",
"vercount",
"counter",
"website"
],
"author": {
"name": "Evan Luo",
"email": "[email protected]",
"url": "https://evannotfound.com"
},
"homepage": "https://vercount.one",
"license": "GPL-3.0",
"scripts": {
"build": "bunchee",
"dev": "bunchee --watch",
"prepublish": "pnpm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/EvanNotFound/vercount-react"
},
"devDependencies": {
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"bunchee": "^5.5.1",
"next": "^15.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
}