UNPKG

make-abstract

Version:

A CLI tool for making abstracts using AI and Zotero

93 lines (92 loc) 2.33 kB
{ "name": "make-abstract", "version": "2.2.0", "description": "A CLI tool for making abstracts using AI and Zotero", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "bin": { "make-abstract": "./dist/index.js" }, "files": [ "dist", "README.md" ], "scripts": { "build": "tsup", "start": "node dist/index.js", "dev": "tsup --watch --onSuccess \"node dist/index.js\"", "lint": "eslint . --ext .ts", "prepublishOnly": "npm run build", "publish": "npm run build && npm publish", "version:patch": "npm version patch", "version:minor": "npm version minor", "version:major": "npm version major", "release:patch": "npm version patch && npm publish", "release:minor": "npm version minor && npm publish", "release:major": "npm version major && npm publish" }, "keywords": [ "cli", "abstract", "typescript", "zotero", "openai", "gemini", "ai", "pdf", "academic", "research" ], "author": { "name": "sickerine", "url": "https://github.com/sickerine" }, "repository": { "type": "git", "url": "https://github.com/OpenDevEd/make_abstract" }, "bugs": { "url": "https://github.com/OpenDevEd/make_abstract/issues" }, "homepage": "https://github.com/OpenDevEd/make_abstract#readme", "license": "MIT", "engines": { "node": ">=18.0.0" }, "devDependencies": { "@types/node": "^20.11.24", "@types/node-fetch": "^2.6.11", "@types/prompts": "^2.4.9", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "eslint": "^8.57.0", "tsup": "^8.0.2", "typescript": "^5.3.3" }, "dependencies": { "@ai-sdk/anthropic": "^1.2.12", "@ai-sdk/cerebras": "^0.2.14", "@ai-sdk/deepseek": "^0.2.14", "@ai-sdk/google": "^1.2.19", "@ai-sdk/groq": "^1.2.9", "@ai-sdk/mistral": "^1.2.8", "@ai-sdk/openai": "^1.3.22", "@ai-sdk/xai": "^1.2.16", "ai": "^4.3.16", "commander": "^12.0.0", "conf": "^12.0.0", "mime": "^4.0.7", "node-fetch": "^3.3.2", "pdfjs-dist": "^4.8.69", "prompts": "^2.4.2", "unpdf": "^1.0.4", "zod": "^3.25.67" } }