UNPKG

@chubbyts/chubbyts-framework

Version:

A minimal, highly performant middleware PSR-15 inspired function based micro framework built with as little complexity as possible, aimed primarily at those developers who want to understand all the vendors they use.

67 lines 1.86 kB
{ "name": "@chubbyts/chubbyts-framework", "type": "module", "version": "3.1.3", "description": "A minimal, highly performant middleware PSR-15 inspired function based micro framework built with as little complexity as possible, aimed primarily at those developers who want to understand all the vendors they use.", "keywords": [ "chubbyts", "micro framework", "middleware", "handler", "psr-15" ], "author": "Dominik Zogg", "license": "MIT", "repository": "chubbyts/chubbyts-framework", "prettier": { "printWidth": 120, "tabWidth": 2, "singleQuote": true, "trailingComma": "all" }, "files": [ "dist" ], "exports": { "./*": { "types": "./*.d.ts", "import": "./*.js", "default": "./*.js" } }, "engines": { "node": ">=22" }, "dependencies": { "@chubbyts/chubbyts-dic-types": "^2.2.0", "@chubbyts/chubbyts-http-error": "^3.3.0", "@chubbyts/chubbyts-log-types": "^3.2.0", "@chubbyts/chubbyts-throwable-to-error": "^2.2.0", "@chubbyts/chubbyts-undici-server": "^1.1.3" }, "devDependencies": { "@chubbyts/chubbyts-eslint": "^5.3.0", "@chubbyts/chubbyts-function-mock": "^2.2.0", "@stryker-mutator/core": "^9.6.1", "@stryker-mutator/vitest-runner": "^9.6.1", "@types/node": "^25.6.2", "@vitest/coverage-v8": "^4.1.5", "prettier": "^3.8.3", "typedoc": "^0.28.19", "typescript": "^6.0.3", "vitest": "^4.1.5" }, "publishConfig": { "access": "public" }, "scripts": { "build": "rm -Rf dist && tsc", "cs-fix": "prettier --write src tests", "cs": "prettier --check src tests", "infection": "stryker run", "lint-fix": "eslint src tests eslint.config.js vitest.config.ts --fix", "lint": "eslint src tests", "test": "vitest", "typedoc": "rm -Rf docs && typedoc" } }