UNPKG

convokit

Version:

A flexible TypeScript framework for ingesting, processing, and exporting chat/conversation data for LLM training and analysis.

70 lines (69 loc) 1.59 kB
{ "name": "convokit", "version": "1.0.2", "main": "dist/index.js", "author": "fishylunar", "type": "module", "types": "dist/index.d.ts", "bin": { "convokit": "dist/cli.js" }, "homepage": "https://github.com/fishylunar/convokit", "repository": { "type": "git", "url": "git+https://github.com/fishylunar/convokit.git" }, "scripts": { "start": "node dist/index.js", "build": "rm -rf ./dist && tsc --build --verbose --diagnostics && tsc-alias && chmod +x dist/cli.js", "test": "vitest run", "lint": "eslint . --ext .ts" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.js" } }, "files": [ "dist" ], "keywords": [ "llm", "chat", "conversation", "data processing", "preprocessing", "fine-tuning", "training data", "typescript", "chatml", "gemini", "nlp", "machine learning", "discord", "export", "import", "plugin", "provider" ], "license": "MIT", "description": "A flexible TypeScript framework for ingesting, processing, and exporting chat/conversation data for LLM training and analysis.", "devDependencies": { "@eslint/js": "^9.24.0", "@types/node": "^22.14.1", "eslint": "^9.24.0", "globals": "^16.0.0", "ts-node": "^10.9.2", "tsc-alias": "^1.8.15", "tsx": "^4.19.3", "typescript": "^5.8.3", "typescript-eslint": "^8.30.1", "vitest": "^3.1.1" }, "dependencies": { "commander": "^13.1.0", "dotenv": "^16.5.0" } }