-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.37 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "devhooks",
"version": "0.0.12",
"description": "React hooks library",
"keywords": [
"react",
"hooks",
"usehooks",
"library",
"utility"
],
"bugs": {
"url": "https://github.com/xelamonster/devooks/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xelamonster/devhooks"
},
"license": "Unlicense",
"author": "Alex Mullen <[email protected]>",
"type": "module",
"module": "dist/index.js",
"source": "lib/index.ts",
"types": "dist/types/index.d.ts",
"files": [
"lib",
"dist"
],
"scripts": {
"build": "parcel build",
"check": "tsc -noEmit",
"dev": "parcel watch",
"fix": "biome lint --write .",
"fmt": "dprint fmt",
"lint": "biome lint",
"prepack": "pnpm check & pnpm build"
},
"dependencies": {
"react": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@types/react": "^18.3.3",
"dprint": "^0.47.2",
"localforage": "^1.10.0",
"parcel": "^2.12.0",
"perfect-debounce": "^1.0.0",
"sort-package-json": "^2.10.0",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]",
"targets": {
"module": {
"optimize": true,
"includeNodeModules": [
"perfect-debounce",
"localforage"
]
}
}
}