openai/openai-dotnet
Publicmirrored fromhttps://github.com/openai/openai-dotnetAvailable
codegen/package.json
46lines · modecode
| 1 | { |
| 2 | "name": "@open-ai/plugin", |
| 3 | "version": "1.0.0", |
| 4 | "description": "OpenAI plugin", |
| 5 | "license": "MIT", |
| 6 | "repository": { |
| 7 | "type": "git", |
| 8 | "url": "git+https://github.com/openai/openai-dotnet.git" |
| 9 | }, |
| 10 | "bugs": { |
| 11 | "url": "https://github.com/openai/openai-dotnet/issues" |
| 12 | }, |
| 13 | "type": "module", |
| 14 | "main": "dist/emitter/index.js", |
| 15 | "exports": { |
| 16 | ".": "./dist/emitter/index.js" |
| 17 | }, |
| 18 | "scripts": { |
| 19 | "clean": "rimraf ./dist ./emitter/temp && dotnet clean ./generator", |
| 20 | "build:emitter": "tsc -p ./tsconfig.build.json", |
| 21 | "build:generator": "dotnet build ./generator", |
| 22 | "build": "npm run build:emitter && npm run build:generator", |
| 23 | "test:emitter": "vitest run -c ./emitter/vitest.config.ts", |
| 24 | "test:generator": "dotnet test ./generator", |
| 25 | "test": "npm run test:emitter && npm run test:generator" |
| 26 | }, |
| 27 | "files": [ |
| 28 | "dist/**" |
| 29 | ], |
| 30 | "dependencies": { |
| 31 | "@azure-tools/typespec-client-generator-core": "0.68.3", |
| 32 | "@open-ai/plugin": "file:", |
| 33 | "@typespec/http": "1.12.0", |
| 34 | "@typespec/http-client-csharp": "1.0.0-alpha.20260605.4", |
| 35 | "@typespec/openapi": "1.12.0" |
| 36 | }, |
| 37 | "devDependencies": { |
| 38 | "@types/node": "^22.8.1", |
| 39 | "@vitest/coverage-v8": "^4.0.10", |
| 40 | "@vitest/ui": "^4.0.10", |
| 41 | "c8": "^10.1.3", |
| 42 | "rimraf": "^6.1.0", |
| 43 | "typescript": "^5.6.3", |
| 44 | "vitest": "^4.0.10" |
| 45 | } |
| 46 | } |
| 47 | |