UNPKG

@typespec/http-server-csharp

Version:

TypeSpec service code generator for c-sharp

99 lines 2.98 kB
{ "name": "@typespec/http-server-csharp", "version": "0.58.0-alpha.25", "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.9.0", "@typespec/http": "^1.9.0", "@typespec/json-schema": "^1.9.0", "@typespec/rest": "^0.79.0", "@typespec/versioning": "^0.79.0" }, "dependencies": { "change-case": "~5.4.4", "cross-spawn": "^7.0.6", "picocolors": "~1.1.1", "yaml": "~2.8.2", "yargs": "~18.0.0", "@typespec/asset-emitter": "^0.79.0" }, "devDependencies": { "@types/cross-spawn": "~6.0.6", "@types/node": "~25.0.2", "@types/yargs": "~17.0.33", "@vitest/coverage-v8": "^4.0.15", "@vitest/ui": "^4.0.15", "fs-extra": "^11.2.0", "globby": "~16.1.0", "inquirer": "^13.1.0", "ora": "^9.0.0", "p-limit": "^7.1.1", "pathe": "^2.0.3", "typescript": "~5.9.2", "vitest": "^4.0.15", "@typespec/compiler": "^1.9.0", "@typespec/http": "^1.9.0", "@typespec/http-specs": "^0.1.0-alpha.32", "@typespec/internal-build-utils": "^0.79.0", "@typespec/json-schema": "^1.9.0", "@typespec/library-linter": "^0.79.0", "@typespec/openapi": "^1.9.0", "@typespec/rest": "^0.79.0", "@typespec/spector": "^0.1.0-alpha.23", "@typespec/tspd": "^0.74.0", "@typespec/versioning": "^0.79.0" }, "scripts": { "clean": "rimraf ./dist ./temp", "build": "tsc -p tsconfig.build.json", "watch": "tsc -p tsconfig.build.json --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" } }