UNPKG

vector-chunker

Version:

A flexible text and data chunking library for vector databases and LLMs

42 lines (41 loc) 973 B
{ "name": "vector-chunker", "version": "1.0.0", "description": "A flexible text and data chunking library for vector databases and LLMs", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "scripts": { "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "build": "tsc", "build:watch": "tsc --watch", "clean": "rm -rf dist", "prebuild": "npm run clean", "prepublishOnly": "npm run build" }, "keywords": [ "vector-db", "chunking", "text-splitting", "llm", "langchain", "embeddings" ], "author": "Karthik Nadar", "license": "MIT", "dependencies": { "@types/express": "^5.0.0", "@types/node": "^18.0.0", "@types/uuid": "^9.0.0", "express": "^4.21.2", "ts-node": "^10.9.2", "typescript": "^5.0.0", "uuid": "^9.0.0" }, "devDependencies": { "@types/jest": "^29.5.14", "jest": "^29.7.0", "ts-jest": "^29.2.6" } }