gitextract_a35_aqba/ ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmrc ├── .prettierrc ├── .vscode/ │ └── extensions.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── build/ │ ├── litegraph.core.js │ ├── litegraph.js │ └── litegraph_mini.js ├── csharp/ │ ├── LiteGraph.cs │ ├── LiteGraphNodes.cs │ ├── LiteGraphTest.cs │ ├── SimpleJSON.cs │ ├── graph.JSON │ └── readme.md ├── css/ │ ├── litegraph-editor.css │ └── litegraph.css ├── doc/ │ ├── api.js │ ├── assets/ │ │ ├── css/ │ │ │ └── main.css │ │ ├── index.html │ │ ├── js/ │ │ │ ├── api-filter.js │ │ │ ├── api-list.js │ │ │ ├── api-search.js │ │ │ ├── apidocs.js │ │ │ └── yui-prettify.js │ │ └── vendor/ │ │ └── prettify/ │ │ ├── CHANGES.html │ │ ├── COPYING │ │ ├── README.html │ │ ├── prettify-min.css │ │ └── prettify-min.js │ ├── classes/ │ │ ├── ContextMenu.html │ │ ├── LGraph.html │ │ ├── LGraphCanvas.html │ │ ├── LGraphNode.html │ │ ├── LiteGraph.html │ │ └── index.html │ ├── data.json │ ├── elements/ │ │ └── index.html │ ├── files/ │ │ ├── .._src_litegraph.js.html │ │ └── index.html │ ├── index.html │ └── modules/ │ └── index.html ├── editor/ │ ├── demodata/ │ │ └── video.webm │ ├── editor_mobile.html │ ├── examples/ │ │ ├── audio.json │ │ ├── audio_delay.json │ │ ├── audio_reverb.json │ │ ├── benchmark.json │ │ ├── copypaste.json │ │ ├── features.json │ │ ├── midi_generation.json │ │ └── subgraph.json │ ├── index.html │ ├── js/ │ │ ├── code.js │ │ ├── defaults.js │ │ ├── defaults_mobile.js │ │ ├── demos.js │ │ └── libs/ │ │ ├── audiosynth.js │ │ ├── gl-matrix-min.js │ │ ├── litegl.js │ │ └── midi-parser.js │ └── style.css ├── external/ │ ├── Basica.otf │ ├── Criticized.otf │ ├── DS-Digital.otf │ └── beat.otf ├── gruntfile.js ├── guides/ │ └── README.md ├── index.html ├── jest.config.js ├── package.json ├── src/ │ ├── litegraph-editor.js │ ├── litegraph.d.ts │ ├── litegraph.js │ ├── litegraph.test.js │ └── nodes/ │ ├── audio.js │ ├── base.js │ ├── events.js │ ├── geometry.js │ ├── glfx.js │ ├── glshaders.js │ ├── gltextures.js │ ├── graphics.js │ ├── input.js │ ├── interface.js │ ├── logic.js │ ├── math.js │ ├── math3d.js │ ├── midi.js │ ├── network.js │ ├── others.js │ └── strings.js ├── style.css └── utils/ ├── build.sh ├── builder.py ├── deploy_files.txt ├── deploy_files_core.txt ├── deploy_files_mini.txt ├── generate_doc.sh ├── pack.sh ├── server.js ├── temp.js └── test.sh