-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.28 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
{
"name": "@intlify/h3",
"version": "0.6.0",
"description": "Internationalization middleware & utilities for h3",
"keywords": [
"i18n",
"h3",
"internationalization",
"intlify",
"utilities",
"middleware"
],
"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"
},
"homepage": "https://github.com/intlify/h3#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/h3",
"release": "bumpp --commit \"release: v%s\" --push --tag",
"lint": "deno lint",
"format": "deno fmt",
"build": "unbuild",
"play:basic": "bun run ./playground/basic/index.ts",
"test": "npm run test:type && npm run test:unit",
"test:type": "vitest run --typecheck",
"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": {
"@types/node": "^20.6.0",
"@types/supertest": "^2.0.12",
"@vitest/coverage-v8": "^1.3.0",
"bumpp": "^9.2.0",
"gh-changelogen": "^0.2.8",
"h3": "^1.11.0",
"lint-staged": "^15.0.2",
"supertest": "^6.3.3",
"typescript": "^5.3.0",
"unbuild": "^2.0.0",
"vitest": "^1.3.0"
},
"dependencies": {
"@intlify/core": "^10.0.3",
"@intlify/utils": "^0.13.0"
},
"packageManager": "npm@9.5.1+sha512.33350b9bd78458fb8fc879910718dc2a6e3b28a6184f582d7953973e53496df75a5cdb69fac3b8cb65f7bf9837ef92ae7440062550d50a816e93b6c59eebaf36"
}