-
-
Notifications
You must be signed in to change notification settings - Fork 428
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.36 KB
/
package.json
File metadata and controls
92 lines (92 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
{
"name": "swagger-typescript-api",
"version": "13.6.5",
"description": "Generate the API client for Fetch or Axios from an OpenAPI Specification",
"homepage": "https://github.com/acacode/swagger-typescript-api",
"bugs": "https://github.com/acacode/swagger-typescript-api/issues",
"repository": "github:acacode/swagger-typescript-api",
"license": "MIT",
"author": "Sergey Volkov <js2me@outlook.com>",
"maintainers": [
"Sora Morimoto <sora@morimoto.io>"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./cli": {
"import": "./dist/cli.mjs",
"require": "./dist/cli.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"bin": {
"sta": "./dist/cli.mjs",
"swagger-typescript-api": "./dist/cli.mjs"
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsdown",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome check",
"prepack": "tsdown",
"test": "vitest run",
"test:update": "vitest run --update",
"typedoc": "typedoc"
},
"dependencies": {
"@apidevtools/swagger-parser": "12.1.0",
"@biomejs/js-api": "4.0.0",
"@biomejs/wasm-nodejs": "2.4.8",
"@types/swagger-schema-official": "^2.0.25",
"c12": "^3.3.3",
"citty": "^0.2.1",
"consola": "^3.4.2",
"es-toolkit": "^1.44.0",
"eta": "^3.5.0",
"nanoid": "^5.1.6",
"openapi-types": "^12.1.3",
"swagger-schema-official": "2.0.0-bab6bed",
"swagger2openapi": "^7.0.8",
"type-fest": "^5.4.4",
"typescript": "~5.9.3",
"yaml": "^2.8.2",
"yummies": "7.11.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.30.0",
"@tsconfig/node20": "20.1.9",
"@tsconfig/strictest": "2.0.8",
"@types/node": "25.5.0",
"@types/swagger2openapi": "7.0.4",
"axios": "1.13.6",
"tsdown": "0.21.2",
"typedoc": "0.28.17",
"vitest": "4.1.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"typedocOptions": {
"entryPoints": [
"src/index.ts"
],
"skipErrorChecking": true
}
}