{
    "name": "@themaximalist/ai.js",
    "version": "0.2.7",
    "description": "AI Toolkit for Node.js (LLM, Image Generation, Embeddings, Vector Search)",
    "type": "module",
    "main": "src/index.js",
    "scripts": {
        "start": "node src/index.js",
        "test": "DEBUG=ai.js:* mocha",
        "test:watch": "DEBUG=ai.js:* mocha --watch",
        "examples": "bash examples/run_all.sh"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/themaximal1st/ai.js.git"
    },
    "bin": {
        "ai": "src/cli.js"
    },
    "keywords": [
        "ai",
        "llm",
        "openai",
        "anthropic",
        "gpt-3.5-turbo",
        "gpt-4",
        "claude-v1",
        "claude-v2",
        "stablediffusion"
    ],
    "author": "The Maximalist",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/themaximal1st/ai.js/issues"
    },
    "homepage": "https://aijs.themaximalist.com",
    "dependencies": {
        "@themaximalist/embeddings.js": "latest",
        "@themaximalist/imagine.js": "latest",
        "@themaximalist/llm.js": "latest",
        "@themaximalist/vectordb.js": "latest",
        "debug": "^4.3.4",
        "dotenv": "^16.0.3"
    },
    "devDependencies": {
        "dotenv-extended": "^2.9.0",
        "mocha": "^10.2.0"
    },
    "peerDependencies": {
        "@xenova/transformers": "^2.14.0"
    },
    "peerDependenciesMeta": {
        "@xenova/transformers": {
            "optional": true
        }
    }
}
