Files
waggle-os/packages/launcher/package.json
Oleg Maslov 0c3e2ead3b
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled
moving
2026-09-02 10:10:29 +02:00

66 lines
1.5 KiB
JSON

{
"name": "@waggle-ai/waggle",
"version": "1.0.0",
"description": "Waggle — Your personal AI agent swarm. Start with `npx @waggle-ai/waggle`.",
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"waggle": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"start": "tsx src/cli.ts",
"test": "node ../../node_modules/vitest/vitest.mjs run --root ../.. --config vitest.config.ts packages/launcher/tests/cli.test.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"agent",
"swarm",
"memory",
"waggle",
"llm",
"personal-assistant"
],
"author": "Marko Markovic",
"license": "MIT",
"dependencies": {
"@clerk/fastify": "^3.0.0",
"@fastify/cors": "^10.0.0",
"@fastify/static": "^9.0.0",
"@fastify/websocket": "^11.0.0",
"@whiskeysockets/baileys": "^7.0.0-rc13",
"archiver": "^7.0.1",
"better-sqlite3": "^12.6.2",
"bullmq": "^5.0.0",
"cron-parser": "^4.9.0",
"docx": "^9.6.1",
"drizzle-orm": "^0.45.2",
"exceljs": "^4.4.0",
"fastify": "^5.3.0",
"fastify-plugin": "^5.0.0",
"glob": "^13.0.6",
"ioredis": "^5.4.0",
"mammoth": "^1.11.0",
"pdf-parse": "^2.4.5",
"postgres": "^3.4.0",
"sqlite-vec": "^0.1.7-alpha.2",
"stripe": "^21.0.1",
"ws": "^8.21.0",
"zod": "^3.24.0"
},
"devDependencies": {
"tsup": "^8.5.1",
"tsx": "^4.21.0"
}
}