synopkg
Version:
Consistent dependency versions in large JavaScript Monorepos
63 lines (62 loc) • 2.02 kB
JSON
{
"name": "@fluidframework/server-kafka-orderer",
"version": "6.0.0",
"description": "Fluid ordering services",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/routerlicious/packages/kafka-orderer"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:compile": "npm run tsc && npm run typetests:gen",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run prettier:fix",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prettier": "prettier --check . --cache --ignore-path ../../.prettierignore",
"prettier:fix": "prettier --write . --cache --ignore-path ../../.prettierignore",
"tsc": "tsc",
"typetests:gen": "fluid-type-test-generator",
"typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
},
"dependencies": {
"@fluidframework/protocol-definitions": "^3.2.0",
"@fluidframework/server-services-core": "workspace:~"
},
"devDependencies": {
"@fluid-tools/build-cli": "^0.38.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.38.0",
"@fluidframework/eslint-config-fluid": "^5.2.0",
"@fluidframework/server-kafka-orderer-previous": "npm:@fluidframework/server-kafka-orderer@5.0.0",
"@types/node": "^18.19.39",
"concurrently": "^8.2.1",
"eslint": "~8.55.0",
"prettier": "~3.0.3",
"rimraf": "^4.4.0",
"typescript": "~5.1.6"
},
"fluidBuild": {
"tasks": {
"tsc": [
"...",
"typetests:gen"
]
}
},
"typeValidation": {
"broken": {
"ClassDeclaration_KafkaOrdererConnection": {
"forwardCompat": false
}
}
}
}