-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 913 Bytes
/
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
{
"name": "react-use-status",
"version": "1.0.0",
"description": "Pointless alternative to useState",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"sideEffects": "false",
"repository": {
"type": "git",
"url": "https://github.com/fischi20/use-status.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=14.17.0"
},
"scripts": {
"build": "unbuild"
},
"keywords": ["react", "state", "hooks", "useState", "pointless"],
"author": "fischi20",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.2.61",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"dependencies": {
"react": "^18.2.0"
}
}