jitar
Version:
Distributed runtime for JavaScript and TypeScript to chop monolithic applications into micros.
77 lines (76 loc) • 2.23 kB
JSON
{
"name": "jitar",
"version": "0.11.2",
"description": "Distributed runtime for JavaScript and TypeScript to chop monolithic applications into micros.",
"author": "Masking Technology <info@masking.tech> (https://jitar.dev)",
"license": "MIT",
"type": "module",
"types": "./dist/lib.d.ts",
"sideEffects": true,
"private": false,
"exports": {
".": "./dist/lib.js",
"./client": "./dist/client.js"
},
"files": [
"CHANGELOG.md",
"README.md",
"dist",
"!dist/types"
],
"bin": "./dist/cli.js",
"scripts": {
"lint": "eslint",
"validate": "tsc -p tsconfig.json --noEmit",
"build": "npm run clean && npm run bundle && npm run copy && npm run finalize",
"clean": "rimraf dist",
"bundle": "rollup -c",
"copy": "cp -R ../init/templates dist/templates",
"finalize": "chmod +x dist/cli.js",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"dotenv": "17.4.2",
"express": "5.2.1",
"glob": "13.0.6",
"mime-types": "3.0.2"
},
"devDependencies": {
"@jitar/cli": "*",
"@jitar/errors": "*",
"@jitar/execution": "*",
"@jitar/health": "*",
"@jitar/http": "*",
"@jitar/logging": "*",
"@jitar/middleware": "*",
"@jitar/runtime": "*",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-terser": "1.0.0",
"@rollup/plugin-typescript": "12.3.0",
"rollup": "4.60.3",
"rollup-plugin-dts": "6.4.1"
},
"engines": {
"node": ">=20.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaskingTechnology/jitar.git"
},
"bugs": {
"url": "https://github.com/MaskingTechnology/jitar/issues"
},
"homepage": "https://jitar.dev",
"keywords": [
"distributed",
"runtime",
"javascript",
"typescript",
"microservices",
"monolith",
"full stack",
"web applications"
],
"gitHead": "3e4dcf529f258336521b4ce3a4db2faa94d67ea1"
}