Files
better-auth/packages/cli/package.json

95 lines
2.3 KiB
JSON

{
"name": "@better-auth/cli",
"version": "1.5.0-beta.11",
"type": "module",
"description": "The CLI for Better Auth",
"module": "dist/index.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/better-auth/better-auth.git",
"directory": "packages/cli"
},
"homepage": "https://www.better-auth.com/docs/concepts/cli",
"main": "./dist/index.mjs",
"scripts": {
"build": "tsdown",
"start": "node ./dist/index.mjs",
"lint:package": "publint run --strict",
"lint:types": "attw --profile esm-only --pack .",
"dev": "tsx ./src/index.ts",
"test": "vitest",
"coverage": "vitest run --coverage --coverage.provider=istanbul",
"typecheck": "tsc --project tsconfig.json"
},
"publishConfig": {
"access": "public",
"executableFiles": [
"./dist/index.mjs"
]
},
"license": "MIT",
"keywords": [
"auth",
"cli",
"typescript",
"better-auth"
],
"exports": {
".": "./dist/index.mjs",
"./api": {
"types": "./dist/api.d.mts",
"default": "./dist/api.mjs"
}
},
"typesVersions": {
"*": {
"api": [
"./dist/api.d.mts"
]
}
},
"bin": {
"better-auth": "./dist/index.mjs"
},
"devDependencies": {
"@better-auth/passkey": "workspace:*",
"@types/better-sqlite3": "^7.6.13",
"@types/prompts": "^2.4.9",
"better-sqlite3": "^12.6.2",
"@types/semver": "^7.7.1",
"jiti": "^2.6.0",
"tsdown": "catalog:",
"tsx": "^4.20.6",
"type-fest": "^5.4.2",
"typescript": "catalog:"
},
"dependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@better-auth/core": "workspace:*",
"@better-auth/telemetry": "workspace:*",
"@better-auth/utils": "catalog:",
"@clack/prompts": "^0.11.0",
"@mrleebo/prisma-ast": "^0.13.1",
"@prisma/client": "^5.22.0",
"@types/pg": "^8.15.5",
"better-auth": "workspace:*",
"c12": "^3.3.3",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"dotenv": "^17.2.2",
"drizzle-orm": "^0.41.0",
"open": "^10.2.0",
"pg": "^8.16.3",
"prettier": "^3.8.1",
"prompts": "^2.4.2",
"semver": "^7.7.2",
"yocto-spinner": "^0.2.3",
"zod": "^4.3.6"
},
"files": [
"dist"
]
}