-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.36 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.36 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
{
"name": "bun-openapi",
"description": "Build OpenAPI-compliant REST APIs using TypeScript and Bun.serve()",
"type": "module",
"version": "0.0.1",
"license": "Apache-2.0",
"author": "Filip Seman <filip.seman@pm.me>",
"repository": {
"type": "git",
"url": "git+https://github.com/xseman/bun-openapi.git"
},
"scripts": {
"docs:build": "bun scripts/build-static.ts",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"typecheck": "tsc --noEmit",
"test": "bun test src/ --coverage --coverage-reporter=text --coverage-reporter=lcov --concurrent",
"test:watch": "bun test src/ --watch --coverage --concurrent"
},
"peerDependencies": {
"@sinclair/typebox": "^0.34.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"class-validator-jsonschema": "^5.1.0",
"handlebars": "^4.7.9",
"zod": "latest",
"zod-to-json-schema": "latest",
"valibot": "latest",
"@valibot/to-json-schema": "latest",
"swagger-ui-dist": "^5.0.0"
},
"peerDependenciesMeta": {
"@sinclair/typebox": {
"optional": true
},
"class-transformer": {
"optional": true
},
"class-validator": {
"optional": true
},
"class-validator-jsonschema": {
"optional": true
},
"zod": {
"optional": true
},
"zod-to-json-schema": {
"optional": true
},
"valibot": {
"optional": true
},
"@valibot/to-json-schema": {
"optional": true
},
"swagger-ui-dist": {
"optional": true
},
"handlebars": {
"optional": true
}
},
"dependencies": {
"d3": "^7.9.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@sinclair/typebox": "^0.34.49",
"@types/bun": "^1.3.11",
"@types/d3": "^7.4.3",
"@types/swagger-ui-dist": "^3.30.6",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"class-validator-jsonschema": "^5.1.0",
"decorator-toolkit": "^0.4.0",
"dprint": "~0.53.2",
"handlebars": "^4.7.9",
"jose": "^6.2.2",
"pagefind": "^1.5.0",
"swagger-ui-dist": "^5.32.2",
"typescript": "~6.0.2"
},
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts",
"./adapters/typebox": "./src/adapters/typebox.ts",
"./adapters/zod": "./src/adapters/zod.ts",
"./adapters/valibot": "./src/adapters/valibot.ts",
"./adapters/class-validator": "./src/adapters/class-validator.ts",
"./adapters/handlebars": "./src/adapters/handlebars.ts"
},
"files": [
"src/**/*.ts",
"!src/**/*.test.ts"
]
}