-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 929 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 929 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
40
41
42
43
44
{
"name": "spec-dts",
"description": "OpenAPI type inference without the codegen",
"version": "0.1.0",
"author": {
"name": "Nick Sinclair",
"email": "nicksinclair@xtra.co.nz",
"url": "https://github.com/sinclairnick"
},
"peerDependencies": {
"openapi3-ts": "^4.4.0"
},
"devDependencies": {
"openapi3-ts": "^4.4.0",
"tsup": "^8.0.1",
"typescript": "^5.7.2",
"vitest": "^1.2.2"
},
"keywords": [
"openapi",
"spec",
"no-codegen",
"oas",
"typescript",
"inference"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"private": false,
"scripts": {
"build": "tsup",
"check": "tsc --noEmit",
"publish-pkg": "pnpm run build && pnpm publish --access=public --no-git-checks",
"test": "vitest"
},
"sideEffects": false,
"types": "dist/index.d.ts"
}