dev:ai script typo corrected in package.json
The dev:ai script in n8n's package.json was pointing to a non-existent package, breaking local AI development. A quick typo fix restores the command.
The dev:ai script in n8n's root package.json contained a typo that prevented developers from spinning up the AI development environment locally. The turbo filter was referencing @n8n/nodes-langchain instead of the correct @n8n/n8n-nodes-langchain package name. The fix corrects this one-character omission, restoring the script's functionality.
Developers working on n8n's langchain integration nodes can now run npm run dev:ai as intended to start the relevant services in parallel. The change is minimal—just a single character difference in a filter flag—but it unblocks the entire local AI development workflow.
This fix lives in the root package.json of the n8n monorepo.
View Original GitHub Description
Summary
This PR fixes the script dev:ai in the main package.json.
Related Linear tickets, Github issues, and Community forum posts
https://linear.app/n8n/issue/TRUST-46
Review / Merge checklist
- I have seen this code, I have run this code, and I take responsibility for this code.