/ package.json
package.json
1 { 2 "name": "audio-plugin-coder", 3 "version": "0.3.0", 4 "description": "AI-powered VST3/AU plugin development framework for JUCE 8 — build audio plugins with Claude Code using a five-phase workflow.", 5 "keywords": [ 6 "audio", 7 "vst", 8 "vst3", 9 "juce", 10 "plugin", 11 "audio-plugin", 12 "dsp", 13 "claude", 14 "ai", 15 "scaffolding" 16 ], 17 "homepage": "https://github.com/Noizefield/audio-plugin-coder", 18 "repository": { 19 "type": "git", 20 "url": "git+https://github.com/Noizefield/audio-plugin-coder.git" 21 }, 22 "bugs": { 23 "url": "https://github.com/Noizefield/audio-plugin-coder/issues" 24 }, 25 "license": "MIT", 26 "bin": { 27 "audio-plugin-coder": "bin/setup.js" 28 }, 29 "scripts": { 30 "setup": "node ./bin/setup.js" 31 }, 32 "engines": { 33 "node": ">=18.0.0" 34 }, 35 "files": [ 36 "bin/", 37 "README.md", 38 "CHANGELOG.md", 39 "LICENCE.md" 40 ] 41 }