@ts-dspy/core
Version:
Core library for building type-safe LLM applications with structured input/output signatures, automatic validation, and reasoning patterns within TypeScript
53 lines (52 loc) • 1.31 kB
JSON
{
"name": "@ts-dspy/core",
"version": "0.4.2",
"description": "Core library for building type-safe LLM applications with structured input/output signatures, automatic validation, and reasoning patterns within TypeScript",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "npm run clean && npm run build:types && rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist"
},
"keywords": [
"ai",
"llm",
"dspy",
"typescript",
"prompting"
],
"author": "Arnav Dadarya",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"rollup": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"gitHead": "64076cea167720968e7fe120aea13046eeda7c6a",
"repository": {
"type": "git",
"url": "https://github.com/ardada2468/LLMTypeSafe.git"
}
}