-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1017 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1017 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
{
"name": "react-exo-hooks",
"version": "2.1.2",
"main": "dist/index.js",
"description": "A collection of useful hooks for data structures and logic, designed for efficiency",
"keywords": ["react", "hooks", "usearray", "use-array", "useobject", "use-object", "usemap", "use-map", "useunsaved", "use-unsaved", "useset", "use-set", "usepromise", "use-promise", "debounce"],
"files": [
"dist/"
],
"author": {
"name": "exoRift",
"url": "https://github.com/exoRift"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exoRift/react-exo-hooks.git"
},
"scripts": {
"build": "[ -d dist ] && rm -r dist; tsc --project tsconfig.build.json",
"lint": "eslint ."
},
"devDependencies": {
"@types/bun": "latest",
"@types/next": "^9.0.0",
"eslint": "^9.30.1",
"eslint-config": "github:exoRift/eslint-config",
"eslint-plugin-jsdoc": "^51.3.4"
},
"peerDependencies": {
"react": "^19.1.0",
"typescript": "^5"
},
"type": "module"
}