-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 833 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 833 Bytes
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
{
"name": "react-raffle-hook",
"version": "1.0.2",
"description": "React hook for creating raffle systems easily.",
"main": "index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/melodyxpot/react-raffle-hook.git"
},
"homepage": "https://github.com/melodyxpot/react-raffle-hook#readme",
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"author": "melodyxpot",
"license": "MIT",
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"keywords": [
"react",
"raffle",
"hook",
"random",
"nextjs"
]
}