@typespec/http-server-csharp
Version:
TypeSpec service code generator for c-sharp
99 lines • 2.94 kB
JSON
{
"name": "@typespec/http-server-csharp",
"version": "0.58.0-alpha.17",
"author": "Microsoft Corporation",
"description": "TypeSpec service code generator for c-sharp",
"homepage": "https://typespec.io",
"readme": "https://github.com/microsoft/typespec/blob/main/packages/http-server-csharp/README.md",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/typespec.git"
},
"bugs": {
"url": "https://github.com/microsoft/typespec/issues"
},
"keywords": [
"typespec",
"service",
"c-sharp"
],
"type": "module",
"bin": {
"hscs-scaffold": "./cmd/hscs.js"
},
"main": "dist/src/lib/index.js",
"exports": {
".": {
"types": "./dist/src/lib/index.d.ts",
"default": "./dist/src/lib/index.js"
},
"./testing": {
"types": "./dist/src/lib/testing/index.d.ts",
"default": "./dist/src/lib/testing/index.js"
}
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"lib/**/*.tsp",
"dist/**",
"!dist/test/**"
],
"peerDependencies": {
"@typespec/compiler": "^1.1.0",
"@typespec/rest": "^0.71.0",
"@typespec/http": "^1.1.0",
"@typespec/versioning": "^0.71.0",
"@typespec/json-schema": "^1.1.0"
},
"dependencies": {
"change-case": "~5.4.4",
"cross-spawn": "^7.0.6",
"picocolors": "~1.1.1",
"yaml": "~2.7.0",
"yargs": "~17.7.2",
"@typespec/asset-emitter": "^0.71.0"
},
"devDependencies": {
"@types/cross-spawn": "~6.0.6",
"@types/node": "~22.13.11",
"@types/yargs": "~17.0.33",
"@vitest/coverage-v8": "^3.1.2",
"@vitest/ui": "^3.1.2",
"fs-extra": "^11.2.0",
"globby": "~14.1.0",
"inquirer": "^12.5.0",
"ora": "^8.1.1",
"p-limit": "^6.2.0",
"pathe": "^2.0.3",
"typescript": "~5.8.2",
"vitest": "^3.1.2",
"@typespec/compiler": "^1.1.0",
"@typespec/http": "^1.1.0",
"@typespec/http-specs": "^0.1.0-alpha.23",
"@typespec/internal-build-utils": "^0.71.0",
"@typespec/library-linter": "^0.71.0",
"@typespec/openapi": "^1.1.0",
"@typespec/rest": "^0.71.0",
"@typespec/spector": "^0.1.0-alpha.15",
"@typespec/tspd": "^0.71.0",
"@typespec/versioning": "^0.71.0",
"@typespec/json-schema": "^1.1.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"test": "vitest run",
"test:watch": "vitest -w",
"test:ui": "vitest --ui",
"test:ci": "vitest run --coverage --reporter=junit --reporter=default",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"regen-docs": "tspd doc . --enable-experimental --output-dir ../../website/src/content/docs/docs/emitters/servers/http-server-csharp/reference --skip-js",
"emit:scenarios": "tsx eng/scripts/emit-scenarios.js --build true",
"test:scenarios": "vitest run --config ./vitest.config.scenarios.js"
}
}