iridescentX/deepseek
0
1{2 "name": "deepseek-free-api",3 "version": "0.0.6",4 "description": "DeepSeek Free API Server",5 "type": "module",6 "main": "dist/index.js",7 "module": "dist/index.mjs",8 "types": "dist/index.d.ts",9 "directories": {10 "dist": "dist"11 },12 "files": [13 "dist/"14 ],15 "scripts": {16 "dev": "tsup src/index.ts --format cjs,esm --sourcemap --dts --publicDir public --watch --onSuccess \"node dist/index.js\"",17 "start": "node dist/index.js",18 "build": "tsup src/index.ts --format cjs,esm --sourcemap --dts --clean --publicDir public"19 },20 "author": "Vinlic",21 "license": "ISC",22 "dependencies": {23 "@types/async-lock": "^1.4.2",24 "async-lock": "^1.4.1",25 "axios": "^1.6.7",26 "colors": "^1.4.0",27 "crc-32": "^1.2.2",28 "cron": "^3.1.6",29 "date-fns": "^3.3.1",30 "eventsource-parser": "^1.1.2",31 "fs-extra": "^11.2.0",32 "koa": "^2.15.0",33 "koa-body": "^5.0.0",34 "koa-bodyparser": "^4.4.1",35 "koa-range": "^0.3.0",36 "koa-router": "^12.0.1",37 "koa2-cors": "^2.0.6",38 "lodash": "^4.17.21",39 "mime": "^4.0.1",40 "minimist": "^1.2.8",41 "randomstring": "^1.3.0",42 "uuid": "^9.0.1",43 "yaml": "^2.3.4"44 },45 "devDependencies": {46 "@types/lodash": "^4.14.202",47 "@types/mime": "^3.0.4",48 "tsup": "^8.0.2",49 "typescript": "^5.3.3"50 }51}52 