forked from use-global-hook/use-global-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.19 KB
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
49
50
{
"name": "@znemz/use-global-hook",
"version": "1.1.17",
"repository": "github:brickhouse-tech/use-global-hook",
"license": "ISC",
"author": "nmccready",
"originalAuthor": "andregardi",
"files": [
"lib",
"src"
],
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "npm run build"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/js": "^9.0.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitest/coverage-v8": "^3.0.0",
"commit-and-tag-version": "^12.0.0",
"eslint": "^9.0.0",
"eslint-plugin-n": "^17.0.0",
"globals": "^15.0.0",
"jsdom": "^25.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}