Files
motif/package.json
T
b1rdmania 4b7836b925 Initial Motif project setup
- 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>
2025-12-17 20:33:48 +00:00

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"
}