-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@intlify/h3",
"description": "Internationalization middleware & utilities for h3",
"version": "1.0.0",
"author": {
"name": "kazuya kawaguchi",
"email": "kawakazu80@gmail.com"
},
"license": "MIT",
"funding": "https://github.com/sponsors/kazupon",
"bugs": {
"url": "https://github.com/intlify/h3/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/h3.git"
},
"keywords": [
"i18n",
"h3",
"internationalization",
"intlify",
"utilities",
"middleware"
],
"homepage": "https://github.com/intlify/h3#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">= 20"
},
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "unbuild",
"build:docs": "typedoc --excludeInternal",
"changelog": "gh-changelogen --repo=intlify/h3",
"dev:eslint": "pnpx @eslint/config-inspector --config eslint.config.ts",
"fix": "pnpm run --color \"/^fix:/\"",
"fix:eslint": "eslint . --fix",
"fix:knip": "knip --fix --no-exit-code",
"fix:prettier": "prettier . --write --experimental-cli",
"lint": "pnpm run --color \"/^lint:/\"",
"lint:eslint": "eslint . --cache",
"lint:knip": "knip",
"lint:prettier": "prettier . --check --experimental-cli",
"lint:typecheck": "tsgo --noEmit --diagnostics",
"play:basic": "pnpx tsx ./playground/basic/index.ts",
"prepare": "git config --local core.hooksPath .githooks",
"release": "bumpp --commit \"release: v%s\" --push --tag",
"test": "pnpm run test:unit",
"test:coverage": "pnpm test --reporter verbose --coverage",
"test:unit": "vitest run --typecheck"
},
"dependencies": {
"@intlify/core": "^11.1.12",
"@intlify/utils": "^0.13.0"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/markdown": "^7.5.1",
"@kazupon/eslint-config": "^0.38.0",
"@kazupon/prettier-config": "^0.1.1",
"@types/node": "^24.10.0",
"@types/supertest": "^6.0.3",
"@typescript/native-preview": "7.0.0-dev.20251025.1",
"@vitest/coverage-v8": "^4.0.7",
"@vitest/eslint-plugin": "^1.4.1",
"bumpp": "^10.3.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.1.12",
"eslint-plugin-jsonc": "^2.21.0",
"eslint-plugin-markdown-preferences": "^0.36.2",
"eslint-plugin-module-interop": "^0.3.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-regexp": "^2.10.0",
"eslint-plugin-unicorn": "^62.0.0",
"eslint-plugin-unused-imports": "^4.3.0",
"eslint-plugin-yml": "^1.19.0",
"gh-changelogen": "^0.2.8",
"h3": "^1.15.4",
"knip": "^5.67.1",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"unbuild": "^3.6.1",
"vitest": "^4.0.7"
},
"prettier": "@kazupon/prettier-config",
"lint-staged": {
"*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint --fix"
],
"*.{js,mjs,cjs}": [
"prettier --write",
"eslint --fix"
],
"*.{json,jsonc,json5,md,yml,yaml}": [
"prettier --write"
]
}
}