drizzle-setup
Version:
A powerful CLI tool to automatically scaffold and configure database setup using Drizzle ORM for PostgreSQL,SQLite,MySQL and More.
72 lines • 1.75 kB
JSON
{
"name": "drizzle-setup",
"version": "0.0.9",
"private": false,
"description": "A powerful CLI tool to automatically scaffold and configure database setup using Drizzle ORM for PostgreSQL,SQLite,MySQL and More.",
"keywords": [
"drizzle",
"drizzle-orm",
"PostgreSQL",
"Neon",
"Vercel Postgres",
"Supabase",
"Xata",
"PGLite",
"Nile",
"Bun SQL",
"Gel",
"MySQL",
"PlanetScale",
"TiDB",
"SingleStore",
"SQLite",
"Turso",
"Cloudflare D1",
"Bun SQLite",
"Cloudflare Durable Objects",
"Native SQLite",
"Expo SQLite",
"OP SQLite"
],
"author": "devgauravjatt",
"repository": {
"type": "git",
"url": "https://github.com/devgauravjatt/drizzle-setup"
},
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"bin": "./dist/index.js",
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.34",
"drizzle-kit": "latest",
"drizzle-orm": "latest",
"prettier": "^3.6.2",
"tsdown": "latest",
"typescript": "^5.8.3"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"execa": "^9.6.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.3",
"path": "^0.12.7",
"url": "^0.11.4"
},
"scripts": {
"start": "node ./dist/index.js",
"build": "tsdown",
"lint": "biome lint",
"format": "prettier . --write",
"changelog": "git-chglog -o CHANGELOG.md",
"release": "pnpm build && pnpm copy-templates && pnpm publish",
"copy-templates": "xcopy \"templates\" \"dist\\templates\" /E /I /Y",
"link": "pnpm run build && pnpm copy-templates && pnpm link"
}
}