@anuran-roy/langtache
Version:
Mustache-driven chat prompt helpers
53 lines • 1.21 kB
JSON
{
"name": "@anuran-roy/langtache",
"version": "0.1.1-beta",
"description": "Mustache-driven chat prompt helpers",
"keywords": [
"langchain",
"genai",
"openai",
"llm",
"generative-ai",
"rag",
"mustache"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "bunx tsc -p tsconfig.build.json && bunx tsup src/index.ts --dts --format esm,cjs --out-dir dist",
"clean": "rm -rf dist",
"prepublishOnly": "bun run clean && bun run build",
"test": "echo \"No test provided\""
},
"engines": {
"bun": ">=1.0.0",
"node": ">=18"
},
"license": "MIT",
"repository": "github:anuran-roy/langtache",
"dependencies": {
"@types/mustache": "^4.2.6",
"dotenv": "^17.2.3",
"mustache": "^4.2.0",
"openai": "^6.3.0",
"partial-json": "^0.1.7",
"typescript": "^5.9.2",
"zod": "^4.1.12",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"tsup": "^8.5.0"
}
}