Initial commit

This commit is contained in:
Brian McGonagill 2026-03-18 09:02:21 -05:00
commit b3a51a4115
10336 changed files with 2381973 additions and 0 deletions

44
node_modules/@prisma/debug/package.json generated vendored Normal file
View file

@ -0,0 +1,44 @@
{
"name": "@prisma/debug",
"version": "7.5.0",
"description": "This package is intended for Prisma's internal use",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"license": "Apache-2.0",
"author": "Tim Suchanek <suchanek@prisma.io>",
"homepage": "https://www.prisma.io",
"repository": {
"type": "git",
"url": "https://github.com/prisma/prisma.git",
"directory": "packages/debug"
},
"bugs": "https://github.com/prisma/prisma/issues",
"devDependencies": {
"@types/node": "~20.19.24",
"kleur": "4.1.5",
"typescript": "5.4.5"
},
"files": [
"README.md",
"dist"
],
"sideEffects": false,
"scripts": {
"dev": "DEV=true tsx helpers/build.ts",
"build": "tsx helpers/build.ts",
"test": "vitest run"
}
}