microsoft/typespec
Publicmirrored from https://github.com/microsoft/typespecAvailable
packages/http-client-csharp/package.json
71lines · modecode
| 1 | { |
| 2 | "name": "@typespec/http-client-csharp", |
| 3 | "version": "0.1.0", |
| 4 | "author": "Microsoft Corporation", |
| 5 | "description": "The typespec library that can be used to generate C# models from a TypeSpec REST protocol binding", |
| 6 | "homepage": "https://github.com/Microsoft/typespec", |
| 7 | "readme": "https://github.com/Microsoft/typespec/blob/main/packages/http-client-csharp/readme.md", |
| 8 | "license": "MIT", |
| 9 | "repository": { |
| 10 | "type": "git", |
| 11 | "url": "git+https://github.com/Microsoft/typespec.git" |
| 12 | }, |
| 13 | "bugs": { |
| 14 | "url": "https://github.com/Microsoft/typespec/issues" |
| 15 | }, |
| 16 | "keywords": [ |
| 17 | "typespec" |
| 18 | ], |
| 19 | "type": "module", |
| 20 | "main": "dist/index.js", |
| 21 | "exports": { |
| 22 | ".": "./dist/index.js" |
| 23 | }, |
| 24 | "scripts": { |
| 25 | "clean": "rimraf ./dist ./temp", |
| 26 | "build": "tsc -p tsconfig.build.json", |
| 27 | "watch": "tsc -p tsconfig.build.json --watch", |
| 28 | "lint-typespec-library": "tsp compile . --warn-as-error --import @typespec/library-linter --no-emit", |
| 29 | "test": "vitest run", |
| 30 | "test:watch": "vitest -w", |
| 31 | "test:ui": "vitest --ui", |
| 32 | "test:ci": "vitest run --coverage --reporter=junit --reporter=default", |
| 33 | "lint": "eslint . --max-warnings=0", |
| 34 | "lint:fix": "eslint . --fix", |
| 35 | "format": "pnpm -w format:dir packages/http-client-csharp" |
| 36 | }, |
| 37 | "files": [ |
| 38 | "dist/**" |
| 39 | ], |
| 40 | "dependencies": { |
| 41 | "json-serialize-refs": "0.1.0-0", |
| 42 | "winston": "^3.8.2" |
| 43 | }, |
| 44 | "peerDependencies": { |
| 45 | "@azure-tools/typespec-azure-core": ">=0.36.0 <1.0.0", |
| 46 | "@azure-tools/typespec-client-generator-core": ">=0.36.0 <1.0.0", |
| 47 | "@typespec/compiler": ">=0.50.0 <1.0.0", |
| 48 | "@typespec/http": ">=0.50.0 <1.0.0", |
| 49 | "@typespec/openapi": ">=0.50.0 <1.0.0", |
| 50 | "@typespec/rest": ">=0.50.0 <1.0.0", |
| 51 | "@typespec/versioning": ">=0.50.0 <1.0.0" |
| 52 | }, |
| 53 | "devDependencies": { |
| 54 | "@azure-tools/typespec-azure-core": "0.40.0", |
| 55 | "@azure-tools/typespec-client-generator-core": "0.40.0", |
| 56 | "@types/node": "~18.13.0", |
| 57 | "@typespec/compiler": "0.54.0", |
| 58 | "@typespec/http": "0.54.0", |
| 59 | "@typespec/json-schema": "0.54.0", |
| 60 | "@typespec/library-linter": "0.54.0", |
| 61 | "@typespec/openapi": "0.54.0", |
| 62 | "@typespec/rest": "0.54.0", |
| 63 | "@typespec/versioning": "0.54.0", |
| 64 | "@vitest/coverage-v8": "^1.4.0", |
| 65 | "@vitest/ui": "^1.4.0", |
| 66 | "c8": "^9.1.0", |
| 67 | "rimraf": "~5.0.5", |
| 68 | "typescript": "~5.4.3", |
| 69 | "vitest": "^1.4.0" |
| 70 | } |
| 71 | } |
| 72 | |