-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 749 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 749 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": "@barso/hooks",
"version": "0.1.8",
"description": "Barso Hooks",
"license": "MIT",
"type": "module",
"main": "src/index.js",
"files": [
"src",
"!src/**/*.test.js"
],
"scripts": {
"test": "tn test",
"test:run": "tn test run",
"lint": "eslint . && prettier --check .",
"format": "eslint --fix . && prettier --write ."
},
"dependencies": {
"@barso/helpers": "^0.4.2"
},
"peerDependencies": {
"react": ">=18.2.0"
},
"author": "aprendendofelipe",
"repository": {
"type": "git",
"url": "https://github.com/aprendendofelipe/react-stack",
"directory": "packages/hooks"
},
"keywords": [
"barso",
"hooks"
],
"publishConfig": {
"access": "public"
}
}