4b7836b925
- Web Audio + TypeScript procedural synthesis engine - Role-based MIDI structure extraction - Vite build tooling and development setup - Core architecture: Engine, RoleMapper, SynthesisEngine - Minimal UI for testing synthesis generation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
724 B
JSON
32 lines
724 B
JSON
{
|
|
"name": "motif",
|
|
"version": "0.1.0",
|
|
"description": "Procedural Music Synthesis from MIDI Structure",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vite": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"midi-parser-js": "^4.0.4"
|
|
},
|
|
"keywords": [
|
|
"web-audio",
|
|
"procedural-synthesis",
|
|
"midi",
|
|
"music-generation"
|
|
],
|
|
"author": "",
|
|
"license": "MIT"
|
|
} |