openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
codegen/package.json
47lines · modeblame
dff9bb58Jose Arriaga Maldonado1 years ago | 1 | { |
1855542agithub-actions[bot]11 months ago | 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 | "@open-ai/plugin": "file:", | |
8ee1d9aegithub-actions[bot]9 months ago | 32 | "@azure-tools/typespec-client-generator-core": "0.61.0", |
6ea7df23github-actions[bot]9 months ago | 33 | "@typespec/http-client-csharp": "1.0.0-alpha.20251022.4", |
8ee1d9aegithub-actions[bot]9 months ago | 34 | "@typespec/http": "1.5.0", |
| 35 | "@typespec/openapi": "1.5.0" | |
1855542agithub-actions[bot]11 months ago | 36 | }, |
| 37 | "devDependencies": { | |
| 38 | "@types/node": "^22.8.1", | |
| 39 | "@vitest/coverage-v8": "^1.4.0", | |
| 40 | "@vitest/ui": "^1.4.0", | |
| 41 | "c8": "^9.1.0", | |
| 42 | "copyfiles": "^2.4.1", | |
| 43 | "rimraf": "~5.0.5", | |
| 44 | "typescript": "^5.6.3", | |
| 45 | "vitest": "^1.4.0" | |
| 46 | } | |
dff9bb58Jose Arriaga Maldonado1 years ago | 47 | } |