-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"name": "@guild-host/hono-swr-cache",
"version": "0.1.0",
"description": "Hono Stale-While-Revalidate Cache Middleware",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vitest watch",
"test": "vitest --run",
"build": "tsup ./src/index.ts --format esm,cjs --dts",
"publint": "publint",
"release": "yarn build && yarn test && yarn publint && yarn publish"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/guild-host/hono-swr-cache.git"
},
"homepage": "https://github.com/guild-host/hono-swr-cache",
"keywords": [
"Hono",
"Middleware",
"Cache",
"Stale-While-Revalidate"
],
"author": "Taz Singh",
"devDependencies": {
"@vitest/coverage-v8": "3.0.4",
"hono": "^4.6.20",
"tsup": "^8.3.6",
"vitest": "^3.0.4"
}
}