$ npx create-tina-app@latest
:--=:
:-===-
-=====-
-=======.
.=========-.
:===========--:
-=============.
.==========-:.
:=========-.
-=========-
.==========-
-==========-
:===========-
-=============.
:==============:
:===============-
.:-================-
..::---====================
....::::::::::-------============================.
.---=================================================:
.-=====================================================-
:=======================================================.
.-====================================================.
.-=================================================.
:=============================================-
-============================================.
.============-:. -==========-
:=========-: .. -==========.
-========: :-=- -=========-
.========. .-==== :=========:
-=======: :=====. -========:
-======- -====- -=======:
-=====: -====: :======.
.=====. -====. .-====-
:==== -===- -====:
-==- :===- :====.
████████╗██╗███╗ ██╗ █████╗ ██████╗███╗ ███╗███████╗
╚══██╔══╝██║████╗ ██║██╔══██╗██╔════╝████╗ ████║██╔════╝
██║ ██║██╔██╗ ██║███████║██║ ██╔████╔██║███████╗
██║ ██║██║╚██╗██║██╔══██║██║ ██║╚██╔╝██║╚════██║
██║ ██║██║ ╚████║██║ ██║╚██████╗██║ ╚═╝ ██║███████║
╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝╚══════╝
Create Tina App v1.5.2
✔ Node v24.10.0 is supported.
✔ Which package manager would you like to use? › npm
✔ What is your project named? … my-tina-app
✔ What starter code would you like to use? › Hugo Starter
✔ Downloading files from repo tinacms/tina-hugo-starter
✔ Updating project metadata...
✖ Failed to install packages: undefined
If I go to the project it created and run npm install manually, I get this error:
my-tina-app $ npm install
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: my-tina-app@0.0.1
npm error Found: tinacms@2.9.0
npm error node_modules/tinacms
npm error tinacms@"^2.9.0" from the root project
npm error
npm error Could not resolve dependency:
npm error peer tinacms@"2.7.10" from next-tinacms-cloudinary@13.0.10
npm error node_modules/next-tinacms-cloudinary
npm error next-tinacms-cloudinary@"^13.0.10" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /Users/razzi/.npm/_logs/2025-10-27T01_04_15_996Z-eresolve-report.txt
npm error A complete log of this run can be found in: /Users/razzi/.npm/_logs/2025-10-27T01_04_15_996Z-debug-0.log
It appears the cloudinary version 13.0.10 is not compatible with the listed tina version 2.9.0.
Before I just update the cloudinary version, I'm curious if cloudinary is necessary at all; it doesn't appear to be used outside of node_modules but it's possible it's a dependency of a dependency. But perhaps tina can work without cloudinary if it doesn't allow image uploads?
If I go to the project it created and run
npm installmanually, I get this error:It appears the cloudinary version 13.0.10 is not compatible with the listed tina version 2.9.0.
Before I just update the cloudinary version, I'm curious if cloudinary is necessary at all; it doesn't appear to be used outside of node_modules but it's possible it's a dependency of a dependency. But perhaps tina can work without cloudinary if it doesn't allow image uploads?