-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "@estos/esnacc-openapi-sdk",
"version": "1.0.16",
"homepage": "https://www.estos.de/",
"repository": {
"type": "git",
"url": "https://github.com/ESTOS/esnacc-openapi-sdk.git"
},
"description": "Fancy frontend for showing and testing openapi schemas derived from asn1 files created trough esnacc",
"keywords": [
"swagger-ui",
"openapi",
"asn1",
"esnacc",
"ui",
"schema"
],
"main": "src/index.js",
"scripts": {
"build": "node esbuild.mjs",
"dev": "node esbuild-dev.mjs",
"lint": "eslint --cache --fix -c .eslintrc.cjs src/**/*.{js,ts,tsx}",
"build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig.build.json"
},
"types": "./dist/index.d.ts",
"exports": {
"./dist/esnacc-openapi-sdk.css": "./dist/esnacc-openapi-sdk.css",
".": {
"import": "./dist/esnacc-openapi-sdk.js",
"require": "./dist/esnacc-openapi-sdk.cjs"
}
},
"author": "Dominik Kerzel",
"license": "MIT",
"dependencies": {
"openapi-types": "^12.1.3"
},
"devDependencies": {
"@types/node": "^20.3.2",
"@types/react-dom": "^18.2.13",
"@types/swagger-ui": "^3.52.2",
"@types/swagger-ui-react": "^4.18.1",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"csstype": "^3.1.2",
"esbuild": "^0.19.5",
"eslint": "^8.51.0",
"goober": "^2.1.13",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"react-select": "^5.7.7",
"swagger-client": "^3.23.1",
"swagger-ui": "^5.9.0",
"swagger-ui-react": "^5.9.0"
}
}