redis-smq-rest-api
Version:
A RESTful API for RedisSMQ
86 lines • 2.11 kB
JSON
{
"name": "redis-smq-rest-api",
"version": "8.3.1",
"description": "A RESTful API for RedisSMQ",
"author": "Weyoss <weyoss@protonmail.com>",
"license": "MIT",
"keywords": [
"redis",
"redis-smq",
"rest api",
"priority queue",
"scheduler",
"broker",
"message broker",
"openapi"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/weyoss/redis-smq.git"
},
"homepage": "https://github.com/weyoss/redis-smq",
"bugs": {
"url": "https://github.com/weyoss/redis-smq/issues"
},
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./package.json": "./package.json"
},
"dependencies": {
"@koa/bodyparser": "5.1.1",
"@koa/cors": "5.0.0",
"@koa/router": "12.0.2",
"@openapi-contrib/json-schema-to-openapi-schema": "3.0.3",
"ajv": "8.17.1",
"awilix": "9.0.0",
"bluebird": "3.7.2",
"json-schema": "0.4.0",
"koa": "2.16.0",
"koa-mount": "4.0.0",
"koa-static": "5.0.0",
"koa2-swagger-ui": "5.11.0",
"lodash": "4.17.21",
"tmp": "0.2.3",
"typescript-json-schema": "0.65.1",
"uuid": "11.1.0"
},
"peerDependencies": {
"redis-smq": "^8.3.1",
"redis-smq-common": "^8.3.1"
},
"devDependencies": {
"@types/json-schema": "7.0.15",
"@types/koa": "2.15.0",
"@types/koa-mount": "4.0.5",
"@types/koa-static": "4.0.4",
"@types/koa__cors": "5.0.0",
"@types/koa__router": "12.0.4",
"@types/tmp": "0.2.6",
"openapi-types": "12.1.3"
},
"engineStrict": true,
"engines": {
"node": ">=20"
},
"scripts": {
"schema:gen": "scripts/schema-gen.sh",
"build": "scripts/build.sh",
"test": "../../scripts/test_workspace_esm.sh"
}
}