{ "name": "@elizaos/plugin-suno", "version": "2.0.3-beta.7", "description": "Suno AI Music Generation Plugin for Eliza", "main": "dist/index.js", "type": "module", "types": "dist/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "eliza-source": { "types": "./src/index.ts", "import": "./src/index.ts", "default": "./src/index.ts" }, "import": "./dist/index.js", "default": "./dist/index.js" }, "./*.css": "./dist/*.css", "./*": { "types": "./dist/*.d.ts", "eliza-source": { "types": "./src/*.ts", "import": "./src/*.ts", "default": "./src/*.ts" }, "import": "./dist/*.js", "default": "./dist/*.js" } }, "files": [ "dist", "auto-enable.ts" ], "elizaos": { "plugin": { "autoEnableModule": "./auto-enable.ts", "capabilities": [ "audio-generation" ] } }, "scripts": { "build": "tsup --format esm", "dev": "tsup --format esm --watch", "lint": "bunx @biomejs/biome check --write --unsafe .", "lint:check": "bunx @biomejs/biome check .", "lint:fix": "bunx @biomejs/biome check --write ./src", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format .", "test": "vitest run --config vitest.config.ts", "typecheck": "tsgo --noEmit -p tsconfig.json" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@types/node": "^22.19.17", "tsup": "^8.5.1", "typescript": "^6.0.3", "vitest": "^4.0.0" }, "agentConfig": { "pluginType": "elizaos:client:1.0.0", "pluginParameters": { "apiKey": { "type": "string", "minLength": 1, "description": "Your Suno API key for authentication.", "optional": false } } }, "publishConfig": { "access": "public" }, "dependencies": { "@elizaos/core": "workspace:*" } }