This commit is contained in:
2026-07-14 09:10:30 +01:00
parent 79c5b896fe
commit 56462e6cc2
38 changed files with 1056 additions and 1720 deletions
+34 -13
View File
@@ -1,26 +1,42 @@
{
"name": "@moduletrace/bun-mariadb",
"version": "1.0.0",
"description": "Mariadb manager for Bun",
"version": "1.0.1",
"description": "Schema-driven MariaDB manager for Bun",
"author": "Benjamin Toby",
"main": "dist/index.js",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"bin": {
"bun-mariadb": "dist/commands/index.js"
"bun-mariadb": "./dist/commands/index.js"
},
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"dev": "tsc --watch",
"compile": "rm -rf dist && tsc"
"dev": "tsc --watch"
},
"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"
"@types/sanitize-html": "^2.16.1",
"typescript": "~5.8.0"
},
"peerDependencies": {
"typescript": "^5"
"typescript": ">=5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"files": [
"dist",
@@ -31,14 +47,19 @@
"type": "git",
"url": "git+https://git.tben.me/Moduletrace/bun-mariadb.git"
},
"keywords": [
"bun",
"mariadb",
"schema",
"orm",
"sql",
"vector"
],
"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"
}
}