-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
74 lines (74 loc) · 1.77 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
{
"name": "chanfana",
"version": "2.3.0",
"description": "OpenAPI 3 and 3.1 schema generator and validator for Hono, itty-router and more!",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"prepare": "husky install",
"build": "rm -rf dist/ && tsup src/index.ts --format cjs,esm --dts --config tsconfig.json",
"lint": "npx @biomejs/biome check src/ tests/ || (npx @biomejs/biome check --write src/ tests/; exit 1)",
"test": "vitest run --root tests",
"deploy-docs": "cd docs && mkdocs build && wrangler pages deploy site --project-name chanfana --branch main"
},
"keywords": [
"cloudflare",
"worker",
"workers",
"serverless",
"cloudflare workers",
"router",
"openapi",
"swagger",
"openapi generator",
"cf",
"optional",
"middleware",
"parameters",
"typescript",
"npm",
"package",
"cjs",
"esm",
"umd",
"typed"
],
"author": "[email protected]",
"license": "MIT",
"homepage": "https://chanfana.pages.dev",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cloudflare/chanfana.git"
},
"bugs": {
"url": "https://github.com/cloudflare/chanfana/issues"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cloudflare/vitest-pool-workers": "^0.5.26",
"@cloudflare/workers-types": "4.20241106.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.9.0",
"@types/service-worker-mock": "^2.0.1",
"hono": "4.6.9",
"husky": "9.1.6",
"itty-router": "5.0.18",
"tsup": "8.3.5",
"typescript": "5.6.3",
"vitest": "2.1.4",
"vitest-openapi": "^1.0.3",
"wrangler": "3.86.0"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.2.0",
"js-yaml": "^4.1.0",
"openapi3-ts": "^4.4.0",
"zod": "^3.23.8"
}
}