45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@moduletrace/bun-mariadb",
|
|
"version": "1.0.0",
|
|
"description": "Mariadb manager for Bun",
|
|
"author": "Benjamin Toby",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"bun-mariadb": "dist/commands/index.js"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsc --watch",
|
|
"compile": "rm -rf dist && tsc"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/inquirer": "^9.0.9",
|
|
"@types/lodash": "^4.17.24",
|
|
"@types/mysql": "^2.15.27",
|
|
"@types/node": "^25.3.3",
|
|
"@types/sanitize-html": "^2.16.1"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"package.json"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://git.tben.me/Moduletrace/bun-mariadb.git"
|
|
},
|
|
"dependencies": {
|
|
"@inquirer/prompts": "^8.3.0",
|
|
"chalk": "^5.6.2",
|
|
"commander": "^14.0.3",
|
|
"inquirer": "^13.3.2",
|
|
"lodash": "^4.17.23",
|
|
"mariadb": "^3.5.3",
|
|
"mysql": "^2.18.1",
|
|
"sanitize-html": "^2.17.6"
|
|
}
|
|
}
|