@redocly/asyncapi-docs
Version:
Async API docs for Redocly Realm
71 lines • 2.09 kB
JSON
{
"name": "@redocly/asyncapi-docs",
"version": "0.3.2",
"description": "Async API docs for Redocly Realm",
"main": "lib/src/index.js",
"module": "lib-esm/src/index.js",
"typings": "lib/src/index.d.ts",
"author": "team@redocly.com",
"files": [
"lib",
"lib-esm"
],
"exports": {
".": {
"require": "./lib/src/index.js",
"import": "./lib-esm/src/index.js"
}
},
"keywords": [
"Redocly",
"AsyncAPI",
"API",
"Docs"
],
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@jest/globals": "29.5.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@types/jest": "29.5.11",
"@types/json-schema": "^7.0.15",
"@types/node": "22.15.3",
"@types/react": "^19.1.4",
"@types/styled-components": "5.1.34",
"esbuild-minify-dir": "^0.0.1",
"jest": "29.7.0",
"jest-styled-components": "7.2.0",
"json-schema": "0.4.0",
"react": "^19.1.0",
"ts-jest": "29.1.2",
"tsc-alias": "1.8.10",
"typescript": "5.6.2"
},
"dependencies": {
"jotai": "^2.11.1",
"openapi-sampler": "^1.6.1",
"react-router-dom": "^6.21.1",
"styled-components": "5.3.11",
"web-vitals": "3.3.1",
"@redocly/config": "0.26.0",
"@redocly/theme": "0.54.2",
"@redocly/openapi-docs": "3.10.2"
},
"peerDependencies": {
"react": "^19.1.0"
},
"scripts": {
"clean": "rm -rf lib lib-esm",
"compile": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"compile-esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"build:minify": "esbuild-minify-dir lib --cjs",
"build:minify-esm": "esbuild-minify-dir lib-esm",
"build:without-minify": "npm run clean && npm run compile && npm run compile-esm",
"build": "npm run clean && npm run compile && npm run compile-esm && npm run build:minify && npm run build:minify-esm",
"watch": "tsc -w -p tsconfig.esm.json",
"test": "jest",
"test:update": "jest -u",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
}
}