bun-mariadb/package.json
2026-07-14 09:13:07 +01:00

69 lines
1.6 KiB
JSON

{
"name": "@moduletrace/bun-mariadb",
"version": "1.0.1",
"description": "Schema-driven MariaDB manager for Bun",
"author": "Benjamin Toby",
"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"
},
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"dev": "tsc --watch",
"compile": "rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "bun run compile"
},
"devDependencies": {
"@types/bun": "latest",
"@types/lodash": "^4.17.24",
"@types/node": "^25.3.3",
"@types/sanitize-html": "^2.16.1",
"typescript": "~5.8.0"
},
"peerDependencies": {
"typescript": ">=5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"files": [
"dist",
"README.md",
"package.json"
],
"repository": {
"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",
"lodash": "^4.17.23",
"sanitize-html": "^2.17.6"
}
}