-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "react-callback-hooks",
"description": "React hooks that react to events with callbacks.",
"version": "0.3.1",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"workspaces": [
"site"
],
"homepage": "https://react-callback-hooks.daustinn.com",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"dev": "turbo run dev //#watch",
"watch": "tsc --watch",
"build": "tsc && esbuild dist/**/*.js --minify --outdir=dist --allow-overwrite",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"dev:site": "turbo run dev --filter site",
"build:site": "bun run build && turbo run build --filter site",
"build:website": "bun run build:site",
"preview:site": "turbo run preview --filter site",
"lint:site": "turbo run lint --filter site"
},
"repository": {
"type": "git",
"url": "https://github.com/daustinn/react-callback-hooks.git"
},
"keywords": [
"react",
"hooks",
"debounce",
"callback"
],
"author": "Daustinn",
"license": "MIT",
"peerDependencies": {
"react": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@swc/core": "^1.13.3",
"@types/react": "19.2.18",
"esbuild": "^0.25.9",
"eslint": "10.9.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react-hooks": "7.1.1",
"jsdom": "30.0.1",
"prettier": "3.9.6",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"turbo": "^2.5.5",
"typescript": "^5.9.2",
"typescript-eslint": "8.68.0"
},
"packageManager": "bun@1.4.0"
}