-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@intlify/hono",
"version": "0.1.2",
"description": "Internationalization middleware & utilities for Hono",
"keywords": [
"i18n",
"hono",
"honojs",
"internationalization",
"intlify",
"utilities",
"middleware"
],
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"license": "MIT",
"funding": "https://github.com/sponsors/kazupon",
"bugs": {
"url": "https://github.com/intlify/hono/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/hono.git"
},
"homepage": "https://github.com/intlify/hono#readme",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 18"
},
"sideEffects": false,
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"scripts": {
"prepare": "git config --local core.hooksPath .githooks",
"changelog": "gh-changelogen --repo=intlify/hono",
"release": "bumpp --commit \"release: v%s\" --push --tag",
"fix": "npm run format && npm run lint",
"lint": "deno lint",
"format": "deno fmt",
"build": "unbuild && bun run ./scripts/deno.ts",
"play:basic": "wrangler dev ./playground/basic/index.ts",
"test": "npm run test:type && npm run test:unit",
"test:type": "vitest typecheck --run",
"test:unit": "vitest run",
"test:coverage": "npm test -- --reporter verbose --coverage"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,jsonc}": [
"deno fmt"
],
"*.{js,ts,jsx,tsx}": [
"deno lint"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231016.0",
"@types/node": "^20.6.0",
"@vitest/coverage-v8": "0.34.6",
"bumpp": "^9.2.0",
"bun-types": "latest",
"gh-changelogen": "^0.2.8",
"hono": "^3.8.1",
"miniflare": "^3.20231016.0",
"lint-staged": "^15.0.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vitest": "0.34.6",
"vitest-environment-miniflare": "^2.14.1",
"wrangler": "^3.6.0"
},
"dependencies": {
"@intlify/core": "^9.6.0",
"@intlify/utils": "^0.11.1"
}
}