qwen-ai-provider
Version:
Vercel AI Provider for running Qwen AI models
76 lines • 2.15 kB
JSON
{
"name": "qwen-ai-provider",
"version": "0.1.0",
"description": "Vercel AI Provider for running Qwen AI models",
"author": "Younis Ahmed <07430e0e-29c0-4a43-bcd0-c123714a124a@anonaddy.com>",
"license": "Apache-2.0",
"homepage": "https://github.com/Younis-Ahmed/qwen-ai-provider",
"repository": {
"type": "git",
"url": "git+https://github.com/Younis-Ahmed/qwen-ai-provider.git"
},
"bugs": {
"url": "https://github.com/Younis-Ahmed/qwen-ai-provider/issues"
},
"keywords": [
"qwen",
"ai",
"provider",
"vercel-ai",
"vercel",
"ai-sdk"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"zod": "^3.24.1"
},
"dependencies": {
"@ai-sdk/provider": "^1.0.7",
"@ai-sdk/provider-utils": "^2.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"@changesets/cli": "^2.27.12",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@edge-runtime/vm": "^5.0.0",
"@types/node": "^22.13.1",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.5",
"eslint": "^9.19.0",
"eslint-plugin-format": "^1.0.1",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5",
"zod": "^3.24.1"
},
"scripts": {
"build": "tsup",
"dev": "tsup -d --watch",
"lint": "eslint \"./**/*.ts*\"",
"test": "pnpm test:node && pnpm test:edge",
"test:edge": "vitest --config vitest.edge.config.mjs --run",
"test:node": "vitest --config vitest.node.config.mjs --run",
"coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"prettier-check": "prettier --check \"./**/*.ts*\"",
"clean": "rm -rf dist",
"ci:release": "pnpm clean && pnpm build && changeset publish",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile"
}
}