UNPKG

dadeumi

Version:

Dadeumi - An AI-powered literary translation workflow inspired by the Korean method of iterative textile refinement

95 lines (94 loc) 2.35 kB
{ "name": "dadeumi", "version": "0.1.0", "description": "Dadeumi - An AI-powered literary translation workflow inspired by the Korean method of iterative textile refinement", "main": "./dist/index.cjs", "module": "./dist/index.js", "bin": { "dadeumi": "./dist/cli.js" }, "scripts": { "build": "npx tsup && tsc --project tsconfig.build.json --emitDeclarationOnly --declaration --declarationDir dist && mv dist/index.d.ts dist/index.d.mts && cp dist/index.d.mts dist/index.d.cts", "start": "bun run ./src/cli.ts", "dev": "bun --watch ./src/cli.ts", "test": "bun test", "test:unit": "bun test test/unit", "test:integration": "bun test test/integration", "test:coverage": "bun test --coverage", "publint": "npx publint", "prepublishOnly": "npm run build" }, "keywords": [ "translation", "ai", "literary", "openai", "anthropic", "claude", "gpt", "nlp", "language", "dadeumi", "gpt-4", "claude-3", "korean", "workflow", "iterative", "refinement" ], "exports": { ".": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "files": [ "dist", "examples", "package.json", "README.md", "LICENSE" ], "engines": { "node": ">=18" }, "repository": { "type": "git", "url": "git+https://github.com/hrishioa/dadeumi.git" }, "bugs": { "url": "https://github.com/hrishioa/dadeumi/issues" }, "homepage": "https://github.com/hrishioa/dadeumi", "author": "Hrishi Olickel <hrishiolickel@gmail.com> (https://olickel.com)", "license": "MIT", "private": false, "dependencies": { "@anthropic-ai/sdk": "^0.18.0", "chalk": "^4.1.2", "commander": "^12.0.0", "dotenv": "^16.4.5", "fast-xml-parser": "^4.3.5", "openai": "^4.32.0", "ora": "^5.4.1" }, "devDependencies": { "@swc/core": "^1.7.26", "@types/chalk": "^0.4.31", "@types/commander": "^2.12.0", "@types/dotenv": "^6.1.1", "@types/node": "^20.17.30", "bun-types": "latest", "publint": "^0.2.7", "tsup": "^8.0.2", "typescript": "^5.4.5" }, "type": "module", "types": "./dist/index.d.cts" }