neondb
Version:
create a claimable Neon database in seconds!
72 lines • 1.62 kB
JSON
{
"name": "neondb",
"version": "0.7.1",
"description": "create a claimable Neon database in seconds!",
"keywords": [
"neon",
"database",
"postgres",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/neondatabase/neondb-cli.git"
},
"license": "Apache-2.0",
"author": {
"name": "Neon",
"url": "https://neon.tech"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"neondb": "dist/cli.js"
},
"exports": {
"./sdk": {
"import": "./dist/lib/instant-neon.js",
"types": "./dist/lib/instant-neon.d.ts"
},
"./launchpad": {
"import": "./dist/lib/instant-neon.js",
"types": "./dist/lib/instant-neon.d.ts"
}
},
"files": [
"README.md",
"dist/",
"package.json"
],
"devDependencies": {
"@types/node": "22.13.10",
"@vitest/coverage-v8": "3.0.9",
"console-fail-test": "0.5.0",
"husky": "9.1.7",
"lint-staged": "15.5.0",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"provenance": false
},
"dependencies": {
"@clack/prompts": "0.10.1",
"@neondatabase/serverless": "^1.0.0",
"dotenv": "^16.5.0",
"gradient-string": "^3.0.0",
"open": "^10.1.0",
"p-wait-for": "^5.0.2"
},
"scripts": {
"build": "tsc --noEmit && tsup",
"test": "vitest --passWithNoTests",
"test:ci": "vitest run --passWithNoTests",
"tsc": "tsc",
"dry:run:prompt": "pnpm build && node dist/cli.js",
"dry:run": "pnpm build && node dist/cli.js --yes"
}
}