-
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.65 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.65 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": "@softnetics/hono-react-query",
"version": "1.3.1",
"type": "module",
"exports": {
".": "./src/index.ts"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest run --watch",
"build": "tsup"
},
"peerDependencies": {
"@tanstack/react-query": ">=5.71.5",
"hono": ">=4.11.4"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.38.0",
"@types/node": "^24.9.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"tsup": "^8.5.0",
"type-fest": "^5.1.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vitest": "^3.0.9"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=22.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/softnetics/hono-react-query.git"
},
"author": "Softnetics",
"license": "MIT",
"bugs": {
"url": "https://github.com/softnetics/hono-react-query/issues"
},
"homepage": "https://github.com/softnetics/hono-react-query#readme"
}