/ libs / typescript / integrations / qwen-code / package.json
package.json
 1  {
 2    "name": "@mlflow/qwen-code",
 3    "version": "0.2.0",
 4    "description": "Qwen Code 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    "license": "Apache-2.0",
16    "keywords": [
17      "mlflow",
18      "tracing",
19      "observability",
20      "qwen",
21      "qwen-code",
22      "llm",
23      "agent",
24      "javascript",
25      "typescript"
26    ],
27    "files": [
28      "dist",
29      "bundle"
30    ],
31    "main": "dist/index.js",
32    "types": "dist/index.d.ts",
33    "bin": {
34      "mlflow-qwen-code": "./bundle/cli.js"
35    },
36    "scripts": {
37      "build": "tsc && npm run build:bundle",
38      "build:bundle": "node esbuild.config.mjs",
39      "test": "jest --config jest.config.cjs",
40      "lint": "eslint src --ext .ts",
41      "lint:fix": "eslint src --ext .ts --fix",
42      "format": "prettier --write .",
43      "format:check": "prettier --check ."
44    },
45    "dependencies": {
46      "@mlflow/core": "^0.2.0"
47    },
48    "devDependencies": {
49      "@types/jest": "^29.5.14",
50      "esbuild": "^0.25.4",
51      "jest": "^29.7.0",
52      "ts-jest": "^29.3.2",
53      "typescript": "^5.8.3"
54    }
55  }