-
-
Notifications
You must be signed in to change notification settings - Fork 639
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 979 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 979 Bytes
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
{
"name": "openapi-typescript-helpers",
"description": "TypeScript helpers for consuming openapi-typescript types",
"version": "0.1.0",
"author": {
"name": "Drew Powers",
"email": "drew@pow.rs"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./*": "./*"
},
"homepage": "https://openapi-ts.dev",
"repository": {
"type": "git",
"url": "https://github.com/openapi-ts/openapi-typescript",
"directory": "packages/openapi-fetch"
},
"bugs": {
"url": "https://github.com/openapi-ts/openapi-typescript/issues"
},
"scripts": {
"build": "unbuild",
"format": "biome format src --write",
"lint": "pnpm run lint:js && pnpm run lint:ts",
"lint:js": "biome check src",
"lint:ts": "tsc --noEmit"
},
"devDependencies": {
"typescript": "6.0.3"
}
}