-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"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",
"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"
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@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"
}
}