-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.1 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
{
"name": "@omer-x/openapi-types",
"version": "1.0.0",
"description": "TypeScript types for the OpenAPI Specification",
"keywords": [
"swagger",
"openapi",
"Specification",
"swagger.json",
"openapi.json",
"types",
"typescript",
"ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/omermecitoglu/openapi-types.git"
},
"bugs": {
"url": "https://github.com/omermecitoglu/openapi-types/issues"
},
"homepage": "https://github.com/omermecitoglu/openapi-types#readme",
"private": false,
"publishConfig": {
"access": "public"
},
"author": {
"name": "Omer Mecitoglu",
"email": "omer.mecitoglu@gmail.com",
"url": "https://omermecitoglu.github.io"
},
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts"
},
"./components": {
"types": "./dist/components.d.ts"
},
"./example": {
"types": "./dist/example.d.ts"
},
"./info": {
"types": "./dist/info.d.ts"
},
"./link": {
"types": "./dist/link.d.ts"
},
"./media-type": {
"types": "./dist/media-type.d.ts"
},
"./operation": {
"types": "./dist/operation.d.ts"
},
"./parameter": {
"types": "./dist/parameter.d.ts"
},
"./paths": {
"types": "./dist/paths.d.ts"
},
"./reference": {
"types": "./dist/reference.d.ts"
},
"./request-body": {
"types": "./dist/request-body.d.ts"
},
"./response": {
"types": "./dist/response.d.ts"
},
"./schema": {
"types": "./dist/schema.d.ts"
},
"./server": {
"types": "./dist/server.d.ts"
},
"./tag": {
"types": "./dist/tag.d.ts"
}
},
"files": [
"dist/"
],
"scripts": {
"prebuild": "ts-unused-exports tsconfig.json --excludePathsFromReport='src/index'",
"build": "tsc"
},
"devDependencies": {
"@omer-x/eslint-config": "^2.0.2",
"eslint": "^9.13.0",
"semantic-release": "^24.2.0",
"ts-unused-exports": "^10.1.0",
"typescript": "^5.6.3"
}
}