prisma-upgrade-v7-esm-support

Installation
SKILL.md

ESM Support

Prisma ORM v7 ships as an ES module only. Your project must be configured for ESM.

Required Changes

package.json

Add the type field:

{
  "type": "module",
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js"
  }
}
Related skills
Installs
8
GitHub Stars
8
First Seen
Mar 18, 2026