mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
75 lines
1.8 KiB
JSON
75 lines
1.8 KiB
JSON
{
|
|
"name": "@qwen-code/sdk",
|
|
"version": "0.5.0-nightly.20251214.4cbb57a7",
|
|
"description": "TypeScript SDK for programmatic access to qwen-code CLI",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "node scripts/build.js",
|
|
"test": "vitest run",
|
|
"test:ci": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"lint": "eslint src test",
|
|
"lint:fix": "eslint src test --fix",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist",
|
|
"prepublishOnly": "npm run clean && npm run build",
|
|
"prepack": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"qwen",
|
|
"qwen-code",
|
|
"ai",
|
|
"code-assistant",
|
|
"sdk",
|
|
"typescript"
|
|
],
|
|
"author": "Qwen Team",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.14.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.13.0",
|
|
"@typescript-eslint/parser": "^7.13.0",
|
|
"@vitest/coverage-v8": "^1.6.0",
|
|
"dts-bundle-generator": "^9.5.1",
|
|
"esbuild": "^0.25.12",
|
|
"eslint": "^8.57.0",
|
|
"typescript": "^5.4.5",
|
|
"vitest": "^1.6.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": ">=5.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/QwenLM/qwen-code.git",
|
|
"directory": "packages/sdk-typescript"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/QwenLM/qwen-code/issues"
|
|
},
|
|
"homepage": "https://qwenlm.github.io/qwen-code-docs/"
|
|
}
|