UNPKG

zerolabel

Version:

Zero-shot multimodal classification SDK - classify text and images with custom labels, no training required

69 lines (68 loc) 1.87 kB
{ "name": "zerolabel", "version": "1.0.18", "description": "Zero-shot multimodal classification SDK - classify text and images with custom labels, no training required", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", "dev": "tsup src/index.ts --format cjs,esm --dts --watch", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src --ext .ts,.tsx", "lint:fix": "eslint src --ext .ts,.tsx --fix", "typecheck": "tsc --noEmit", "prepublishOnly": "rm -f README.md && cp ../README.md README.md && npm run build && npm run test && npm run lint", "postpublish": "rm -f README.md && ln -s ../README.md README.md", "release": "npm version patch && npm publish" }, "keywords": [ "zero-shot", "classification", "multimodal", "text-classification", "image-classification", "machine-learning", "ai", "nlp", "computer-vision", "typescript" ], "author": "mrmps <contact@zerolabel.dev>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/mrmps/zerolabel" }, "bugs": { "url": "https://github.com/mrmps/zerolabel/issues" }, "homepage": "https://github.com/mrmps/zerolabel#readme", "dependencies": { "openai": "^4.0.0", "zerolabel": "1.0.10" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.5.0", "ts-jest": "^29.1.0", "tsup": "^7.0.0", "typescript": "^5.0.0" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" } }