@neondatabase/vite-plugin-postgres
Version:
This Vite plugin instantly provisions a Postgres instance (via Neon) and injects the connection string into your `.env` file, so you can start developing immediately.
44 lines • 942 B
JSON
{
"name": "@neondatabase/vite-plugin-postgres",
"version": "0.2.2",
"keywords": [
"neon",
"database",
"postgres",
"vite"
],
"type": "module",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"package.json"
],
"devDependencies": {
"@types/node": "22.13.10",
"@vitest/coverage-v8": "3.0.9",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vite": "^6.0.0",
"vitest": "^3.0.9"
},
"peerDependencies": {
"vite": "^6.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@clack/prompts": "0.10.1",
"neondb": "0.7.1"
},
"scripts": {
"build": "tsc --noEmit && tsup",
"test": "vitest --passWithNoTests",
"test:ci": "vitest run --passWithNoTests",
"tsc": "tsc",
"dry:run": "pnpm build && node dist/cli.js --yes",
"dry:run:prompt": "pnpm build && node dist/cli.js"
}
}