-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.46 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
{
"name": "@standard-community/standard-openapi",
"version": "0.2.10",
"type": "module",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pkgroll --clean-dist",
"format": "biome check --write .",
"test": "vitest"
},
"keywords": [
"standard-schema",
"standard-community",
"standard-schema-community",
"openapi-schema",
"openapi",
"convertor"
],
"homepage": "https://github.com/standard-community",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/standard-community/standard-openapi.git"
},
"bugs": {
"url": "https://github.com/standard-community/standard-openapi/issues"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./convert": {
"import": {
"types": "./dist/vendors/convert.d.ts",
"default": "./dist/vendors/convert.js"
},
"require": {
"types": "./dist/vendors/convert.d.cts",
"default": "./dist/vendors/convert.cjs"
}
}
},
"peerDependencies": {
"@standard-community/standard-json": "^0.3.5",
"@standard-schema/spec": "^1.0.0",
"arktype": "^2.1.20",
"effect": "^3.20.0",
"openapi-types": "^12.1.3",
"sury": "^10.0.0",
"typebox": "^1.0.0",
"valibot": "^1.4.2",
"zod": "^3.25.0 || ^4.0.0",
"zod-openapi": "^4"
},
"peerDependenciesMeta": {
"arktype": {
"optional": true
},
"effect": {
"optional": true
},
"sury": {
"optional": true
},
"typebox": {
"optional": true
},
"valibot": {
"optional": true
},
"zod": {
"optional": true
},
"zod-openapi": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.0.4",
"@types/json-schema": "^7.0.15",
"@types/node": "^24.3.1",
"@valibot/to-json-schema": "^1.3.0",
"pkgroll": "^2.28.1",
"typebox": "1.0.17",
"typescript": "^5.8.3",
"vitest": "^3.2.6",
"zod": "^3.25.67",
"zod-to-json-schema": "^3.24.6"
},
"packageManager": "pnpm@10.6.3+sha512.bb45e34d50a9a76e858a95837301bfb6bd6d35aea2c5d52094fa497a467c43f5c440103ce2511e9e0a2f89c3d6071baac3358fc68ac6fb75e2ceb3d2736065e6"
}