UNPKG

@sammy-labs/sammy-three

Version:

Sammy Agent Core: AI voice agent with screen capture, memory management, and live API integration

108 lines 3.29 kB
{ "name": "@sammy-labs/sammy-three", "version": "0.0.25", "description": "Sammy Agent Core: AI voice agent with screen capture, memory management, and live API integration", "type": "module", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" }, "./styles.css": "./dist/index.css" }, "license": "MIT", "keywords": [ "ai-agent", "voice-ai", "screen-capture", "live-api", "memory-management", "react-hooks", "gemini-live" ], "author": { "name": "Sammy Labs Team", "email": "founders@sammylabs.com", "url": "https://sammylabs.com" }, "repository": { "type": "git", "url": "https://github.com/SammyClub/package.git" }, "bugs": { "url": "https://github.com/SammyClub/package/issues" }, "homepage": "https://github.com/SammyClub/package", "peerDependencies": { "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "dependencies": { "@google/genai": "^1.11.0", "@picovoice/koala-web": "^2.0.0", "@picovoice/web-voice-processor": "^4.0.9", "eventemitter3": "^5.0.1", "uuid": "^11.1.0" }, "devDependencies": { "@eslint/eslintrc": "^3.2.0", "@eslint/js": "^9.31.0", "@types/fluent-ffmpeg": "^2.1.27", "@types/node": "22.10.2", "@types/react": "^19.0.8", "@types/react-dom": "^19.0.3", "@types/uuid": "^10.0.0", "@typescript-eslint/eslint-plugin": "^8.37.0", "@typescript-eslint/parser": "^8.37.0", "autoprefixer": "^10.4.14", "esbuild": "^0.19.0", "eslint": "^9.31.0", "eslint-config-prettier": "^10.0.1", "eslint-plugin-perfectionist": "^4.7.0", "eslint-plugin-prettier": "^5.2.3", "eslint-plugin-react": "^7.37.4", "eslint-plugin-react-hooks": "^5.1.0", "eslint-plugin-unused-imports": "^4.1.4", "fluent-ffmpeg": "^2.1.3", "globals": "^15.14.0", "node-wav": "^0.0.2", "postcss": "^8.4.24", "postcss-cli": "^11.0.0", "prettier": "^3.3.0", "react": "19.0.0", "react-dom": "19.0.0", "tsup": "^6.7.0", "typescript": "^5.0.0", "wavefile": "^11.0.0" }, "files": [ "dist", "README.md" ], "engines": { "node": ">=14" }, "publishConfig": { "access": "public" }, "scripts": { "typecheck": "tsc --noEmit", "build:workers": "node scripts/build-workers.js", "build:js": "tsup", "build:css": "postcss src/index.css -o dist/index.css --verbose", "build": "npm run build:workers && npm run build:js && npm run build:css", "build:prod": "NODE_ENV=production npm run build", "dev:workers": "node scripts/build-workers.js && nodemon --watch src/lib/workers/*.worker.ts --exec 'node scripts/build-workers.js'", "dev": "npm run build:workers && tsup --watch", "lint": "eslint \"src/**/*.{ts,tsx}\"", "lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix --quiet", "prettier": "prettier --write \"src/**/*.{ts,tsx}\" --log-level error", "prettier:check": "prettier --check \"src/**/*.{ts,tsx}\"", "format": "npm run prettier && npm run lint:fix", "format:check": "npm run prettier:check && npm run lint" } }