├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── README.md ├── __init__.py ├── custom_routes.py ├── js ├── apiClient.js ├── comfy │ ├── comfy.js │ ├── ext.js │ └── ui.js ├── events.js ├── game │ ├── buttons.js │ ├── core.js │ ├── food.js │ ├── minigames │ │ ├── endless_runner.js │ │ ├── flappy_pets.js │ │ └── minigame.js │ ├── pet.js │ ├── shop │ │ ├── index.js │ │ └── items.js │ ├── stage.js │ ├── ui │ │ └── pointBar.js │ └── user │ │ └── index.js ├── index.js ├── libs │ └── gif.js.deprecated └── utils.js ├── package.json ├── persistence └── __init__.py └── prestartup_script.py /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | node_modules 3 | persistence/.dat/** 4 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run lint-staged 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | from . import custom_routes 2 | 3 | WEB_DIRECTORY = "js" 4 | NODE_CLASS_MAPPINGS = {} 5 | -------------------------------------------------------------------------------- /custom_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/custom_routes.py -------------------------------------------------------------------------------- /js/apiClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/apiClient.js -------------------------------------------------------------------------------- /js/comfy/comfy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/comfy/comfy.js -------------------------------------------------------------------------------- /js/comfy/ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/comfy/ext.js -------------------------------------------------------------------------------- /js/comfy/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/comfy/ui.js -------------------------------------------------------------------------------- /js/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/events.js -------------------------------------------------------------------------------- /js/game/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/buttons.js -------------------------------------------------------------------------------- /js/game/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/core.js -------------------------------------------------------------------------------- /js/game/food.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/food.js -------------------------------------------------------------------------------- /js/game/minigames/endless_runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/minigames/endless_runner.js -------------------------------------------------------------------------------- /js/game/minigames/flappy_pets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/minigames/flappy_pets.js -------------------------------------------------------------------------------- /js/game/minigames/minigame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/minigames/minigame.js -------------------------------------------------------------------------------- /js/game/pet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/pet.js -------------------------------------------------------------------------------- /js/game/shop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/shop/index.js -------------------------------------------------------------------------------- /js/game/shop/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/shop/items.js -------------------------------------------------------------------------------- /js/game/stage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/stage.js -------------------------------------------------------------------------------- /js/game/ui/pointBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/ui/pointBar.js -------------------------------------------------------------------------------- /js/game/user/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/game/user/index.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- 1 | export * from './comfy/ext.js' 2 | -------------------------------------------------------------------------------- /js/libs/gif.js.deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/libs/gif.js.deprecated -------------------------------------------------------------------------------- /js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/js/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/package.json -------------------------------------------------------------------------------- /persistence/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/persistence/__init__.py -------------------------------------------------------------------------------- /prestartup_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathannlu/ComfyUI-Pets/HEAD/prestartup_script.py --------------------------------------------------------------------------------