airfine
Version:
A minimal LLM-based text refinement CLI
71 lines (70 loc) • 1.71 kB
JSON
{
"name": "airfine",
"version": "0.1.2",
"description": "A minimal LLM-based text refinement CLI",
"main": "dist/index.js",
"bin": {
"airfine": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.js --format=cjs",
"postbuild": "chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build && npm test",
"lint": "biome lint ./src",
"format": "biome format --write ./src",
"check": "biome check --write --unsafe ./src"
},
"keywords": [
"cli",
"openai",
"llm",
"text",
"refinement",
"ai",
"gpt",
"claude",
"gemini"
],
"author": "yukimi-inu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yukimi-inu/airfine.git"
},
"bugs": {
"url": "https://github.com/yukimi-inu/airfine/issues"
},
"homepage": "https://github.com/yukimi-inu/airfine#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {},
"devDependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@biomejs/biome": "^1.9.4",
"@google/generative-ai": "^0.23.0",
"@types/inquirer": "^8.2.6",
"@types/node": "^20.11.19",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"esbuild": "^0.19.11",
"inquirer": "^8.2.5",
"openai": "^4.28.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}