forked from honojs/middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.3 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.3 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
{
"name": "hono-middleware",
"version": "0.0.0",
"description": "Third-party middleware for Hono",
"type": "module",
"workspaces": {
"packages": [
".github/actions/*",
"packages/*"
]
},
"scripts": {
"build": "tsdown",
"publish": "yarn publish:npm && yarn publish:jsr",
"publish:npm": "yarn workspaces foreach --all --no-private --topological --verbose npm publish --tolerate-republish && changeset tag",
"publish:jsr": "deno install --no-lock && deno publish",
"version": "yarn version:npm && yarn version:jsr",
"version:npm": "changeset version",
"version:jsr": "turbo run version:jsr",
"version:set": "tmp=$(mktemp) && jq --arg version $0 '.version = $version' $INIT_CWD/deno.json > $tmp && mv $tmp $INIT_CWD/deno.json && prettier --write $INIT_CWD/deno.json",
"typecheck": "tsc --build",
"typecheck:clean": "tsc --build --clean",
"typecheck:watch": "tsc --build --watch",
"test": "vitest",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"format": "turbo run format --continue -- --check --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache"
},
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/honojs/middleware.git"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.29.7",
"@cloudflare/vitest-pool-workers": "https://pkg.pr.new/@cloudflare/vitest-pool-workers@11632",
"@cloudflare/workers-types": "^4.20250612.0",
"@hono/eslint-config": "workspace:*",
"@ryoppippi/unplugin-typia": "^2.6.5",
"@tsconfig/strictest": "^2.0.8",
"@types/bun": "^1.0.0",
"@types/node": "^25.0.3",
"@types/ws": "^8.18.0",
"@vitest/coverage-istanbul": "^4.0.16",
"eslint": "^9.39.2",
"hono": "^4.11.3",
"pkg-pr-new": "^0.0.54",
"prettier": "^3.6.2",
"publint": "^0.3.16",
"tsdown": "^0.15.9",
"turbo": "^2.5.8",
"typescript": "^5.8.2",
"typia": "^9.7.2",
"vitest": "^4.0.16"
},
"packageManager": "yarn@4.12.0"
}