UNPKG

gannicus

Version:

Core library for LLM-powered synthetic data generation

66 lines (65 loc) 1.5 kB
{ "name": "gannicus", "version": "0.3.0", "description": "Core library for LLM-powered synthetic data generation", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "README.md" ], "repository": { "type": "git", "url": "https://github.com/Arakiss/gannicus.git", "directory": "packages/core" }, "exports": { ".": "./src/index.ts", "./schema": "./src/schema/index.ts", "./providers": "./src/providers/index.ts", "./generator": "./src/generator/index.ts", "./types": "./src/types/index.ts" }, "scripts": { "build": "bun build src/index.ts --outdir dist --target node --format esm && tsc --emitDeclarationOnly --outDir dist", "dev": "bun --watch src/index.ts", "test": "bun test", "typecheck": "tsc --noEmit", "prepublishOnly": "bun run build" }, "dependencies": { "zod": "catalog:" }, "keywords": [ "synthetic-data", "synthetic-data-generation", "llm", "llm-powered", "data-generation", "ollama", "phi-3", "typescript", "bun", "test-data", "fake-data", "faker-alternative", "realistic-data", "coherent-data", "type-safe", "local-llm", "privacy-first" ], "author": "Petru Arakiss", "license": "MIT", "publishConfig": { "access": "public" }, "peerDependencies": { "typescript": "^5.0.0" }, "devDependencies": { "@types/bun": "catalog:", "typescript": "catalog:" } }