package.json
1 { 2 "name": "@mlflow/codex", 3 "version": "0.2.0", 4 "description": "Codex CLI integration package for MLflow Tracing", 5 "type": "module", 6 "repository": { 7 "type": "git", 8 "url": "https://github.com/mlflow/mlflow.git" 9 }, 10 "homepage": "https://mlflow.org/", 11 "author": { 12 "name": "MLflow", 13 "url": "https://mlflow.org/" 14 }, 15 "bugs": { 16 "url": "https://github.com/mlflow/mlflow/issues" 17 }, 18 "license": "Apache-2.0", 19 "keywords": [ 20 "mlflow", 21 "tracing", 22 "observability", 23 "codex", 24 "openai", 25 "llm", 26 "agent", 27 "javascript", 28 "typescript" 29 ], 30 "files": [ 31 "dist", 32 "bundle" 33 ], 34 "main": "dist/index.js", 35 "types": "dist/index.d.ts", 36 "bin": { 37 "mlflow-codex": "./bundle/cli.js" 38 }, 39 "scripts": { 40 "build": "tsc && npm run build:bundle", 41 "build:bundle": "node esbuild.config.mjs", 42 "test": "jest --config jest.config.cjs", 43 "lint": "eslint src --ext .ts", 44 "lint:fix": "eslint src --ext .ts --fix", 45 "format": "prettier --write .", 46 "format:check": "prettier --check ." 47 }, 48 "dependencies": { 49 "@mlflow/core": "^0.2.0" 50 }, 51 "devDependencies": { 52 "@types/jest": "^29.5.14", 53 "esbuild": "^0.25.4", 54 "jest": "^29.7.0", 55 "ts-jest": "^29.3.2", 56 "typescript": "^5.8.3" 57 } 58 }