gitextract_nd4wfh09/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ ├── commands.yml │ └── npm-publish.yml ├── .gitignore ├── .gitpod.yml ├── .npmrc ├── LICENSE ├── examples/ │ ├── bench.js │ ├── blockInteraction.js │ ├── callback.js │ ├── chaining-goals.js │ ├── example.js │ ├── exclusionArea.js │ ├── movements.js │ ├── multiple.js │ ├── promise.js │ └── tutorial/ │ ├── basic.js │ ├── goalComposite.js │ └── goalsExplained.md ├── history.md ├── index.d.ts ├── index.js ├── lib/ │ ├── astar.js │ ├── goals.js │ ├── goto.js │ ├── heap.js │ ├── interactable.json │ ├── lock.js │ ├── move.js │ ├── movements.js │ ├── passableEntities.json │ ├── physics.js │ └── shapes.js ├── package.json ├── readme.md └── test/ ├── internalTest.js └── schematics/ └── parkour1.schem