File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @dylanbulmer/api" ,
3
- "version" : " 2.0.0-beta.3" ,
4
- "main" : " index.js" ,
3
+ "version" : " 2.0.0-beta.4" ,
5
4
"author" : " Dylan Bulmer <dylan@dylanbulmer.com>" ,
6
5
"license" : " MIT" ,
7
6
"bin" : {
8
- "api" : " dist /cjs/index.js"
7
+ "api" : " . /cjs/index.js"
9
8
},
9
+ "main" : " ./cjs/index.js" ,
10
+ "module" : " ./esm/index.js" ,
11
+ "types" : " ./types/index.d.ts" ,
10
12
"exports" : {
11
13
"." : {
12
14
"require" : " ./cjs/index.js" ,
Original file line number Diff line number Diff line change 1
1
import { OpenAPIV3_1 } from "openapi-types" ;
2
- import * as Responses from "../classes/responses " ;
2
+ import { Responses } from "../" ;
3
3
4
4
const settings : OpenAPIV3_1 . Document = {
5
5
openapi : "3.1.0" ,
@@ -8,7 +8,7 @@ const settings: OpenAPIV3_1.Document = {
8
8
servers : [
9
9
{
10
10
url : `http://localhost:8000/api/` ,
11
- description : "Dev Server"
11
+ description : "Dev Server" ,
12
12
} ,
13
13
] ,
14
14
You can’t perform that action at this time.
0 commit comments