Skip to content

Commit 1d671b5

Browse files
committed
✨ feat(package): improve package.json metadata
- added keywords for better searchability - updated description to be more comprehensive - added author and repository information - changed license to MIT - removed `private: true` to allow publishing to npm 📝 docs(README): update installation instructions - simplified installation instructions to use npx - removed redundant package manager options
1 parent 2d5030e commit 1d671b5

File tree

2 files changed

+34
-5
lines changed

2 files changed

+34
-5
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ Install globally via your preferred package manager:
2121
```bash
2222
npm install -g drizzle-setup
2323
# or
24-
pnpm add -g drizzle-setup
25-
# or
26-
bun add -g drizzle-setup
24+
npx drizzle-setup
2725
```
2826

2927
---

package.json

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,39 @@
11
{
22
"name": "drizzle-setup",
33
"version": "0.0.1",
4-
"private": true,
5-
"description": "A simple example library built by tsdown",
4+
"private": false,
5+
"description": "A powerful CLI tool to automatically scaffold and configure database setup using Drizzle ORM for PostgreSQL,SQLite,MySQL and More.",
6+
"keywords": [
7+
"drizzle",
8+
"drizzle-orm",
9+
"PostgreSQL",
10+
"Neon",
11+
"Vercel Postgres",
12+
"Supabase",
13+
"Xata",
14+
"PGLite",
15+
"Nile",
16+
"Bun SQL",
17+
"Gel",
18+
"MySQL",
19+
"PlanetScale",
20+
"TiDB",
21+
"SingleStore",
22+
"SQLite",
23+
"Turso",
24+
"Cloudflare D1",
25+
"Bun SQLite",
26+
"Cloudflare Durable Objects",
27+
"Native SQLite",
28+
"Expo SQLite",
29+
"OP SQLite"
30+
],
31+
"author": "devgauravjatt",
32+
"repository": {
33+
"type": "git",
34+
"url": "https://github.com/devgauravjatt/drizzle-setup"
35+
},
36+
"license": "MIT",
637
"type": "module",
738
"files": [
839
"dist"

0 commit comments

Comments
 (0)