-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 2.65 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
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
{
"name": "@zauni/unplugin-openapi",
"version": "1.0.2",
"description": "A bundler agnostic plugin which converts OpenAPI 3.0, 3.1 and Swagger files to ESM modules.",
"type": "module",
"files": ["dist", "types"],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
},
"./yaml": {
"types": "./types/yaml.d.ts"
},
"./astro": {
"require": "./dist/astro.cjs",
"import": "./dist/astro.js"
},
"./esbuild": {
"require": "./dist/esbuild.cjs",
"import": "./dist/esbuild.js"
},
"./rolldown": {
"require": "./dist/rolldown.cjs",
"import": "./dist/rolldown.js"
},
"./rollup": {
"require": "./dist/rollup.cjs",
"import": "./dist/rollup.js"
},
"./rspack": {
"require": "./dist/rspack.cjs",
"import": "./dist/rspack.js"
},
"./vite": {
"require": "./dist/vite.cjs",
"import": "./dist/vite.js"
},
"./webpack": {
"require": "./dist/webpack.cjs",
"import": "./dist/webpack.js"
}
},
"typesVersions": {
"*": {
"*": ["./dist/*", "./types/*", "./*"]
}
},
"scripts": {
"build": "tsup",
"lint": "biome check . && tsc --noEmit",
"format": "biome format . --write",
"fix": "biome check . --write",
"test": "vitest --ui",
"test:ci": "vitest --run",
"test:browser": "playwright test --ui",
"test:browser:ci": "playwright test",
"check-exports": "npm run build && attw --pack . --ignore-rules=cjs-resolves-to-esm"
},
"dependencies": {
"@readme/json-schema-ref-parser": "^1.2.0",
"@rollup/pluginutils": "^5.1.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.2",
"@biomejs/biome": "^1.8.3",
"@playwright/test": "^1.47.0",
"@rspack/core": "^1.0.5",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.5.4",
"@vitest/ui": "^2.1.0",
"astro": "^4.15.6",
"esbuild": "^0.23.1",
"memfs": "^4.11.1",
"openapi-types": "^12.1.3",
"rolldown": "^0.13.2",
"rollup": "^4.21.3",
"tsup": "^8.2.4",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"unplugin": "^1.14.1",
"vite": "^5.4.4",
"vitest": "^2.0.5",
"webpack": "^5.94.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zauni/unplugin-openapi.git"
},
"keywords": [
"unplugin",
"rollup",
"rolldown",
"vite",
"openapi",
"swagger",
"yaml",
"webpack",
"rspack",
"esbuild",
"plugin",
"astro"
],
"author": "Matthias Zaunseder",
"license": "MIT",
"bugs": {
"url": "https://github.com/zauni/unplugin-openapi/issues"
},
"homepage": "https://github.com/zauni/unplugin-openapi#readme",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"provenance": true
}
}