puddysql
Version:
🍮 Powerful SQL toolkit for Node.js, built with flexibility and structure in mind. Easily manage SQLite3/PostgreSQL, advanced queries, smart tag systems, and full JSON-friendly filters.
88 lines (87 loc) • 2.85 kB
JSON
{
"name": "puddysql",
"description": "🍮 Powerful SQL toolkit for Node.js, built with flexibility and structure in mind. Easily manage SQLite3/PostgreSQL, advanced queries, smart tag systems, and full JSON-friendly filters.",
"version": "1.0.0-beta-3",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"ethereum": "jasmindreasond.x",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"repository": "https://github.com/JasminDreasond/PuddySQL.git",
"author": "Yasmin Seidel (JasminDreasond)",
"license": "LGPL-3.0-only",
"dependencies": {
"@types/lodash": "^4.17.19",
"@types/pg": "^8.15.4",
"@types/sqlite3": "^3.1.11",
"lodash": "^4.17.21",
"pg": "^8.16.3",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"tiny-essentials": "^1.24.2"
},
"keywords": [
"sql",
"sqlite",
"sqlite3",
"postgres",
"postgresql",
"query",
"query-builder",
"sql-builder",
"json",
"json-query",
"tag-system",
"tags",
"advanced-search",
"search",
"database",
"structured-query"
],
"scripts": {
"test": "npm run test:mjs && npm run test:cjs && npm run test:js",
"test:js": "npx babel-node test/index.js",
"test:mjs": "node test/index.mjs",
"test:cjs": "node test/index.cjs",
"fix:prettier": "npm run fix:prettier:src && npm run fix:prettier:test && npm run fix:prettier:rollup.config && npm run fix:prettier:webpack.config",
"fix:prettier:src": "prettier --write ./src/*",
"fix:prettier:test": "prettier --write ./test/*",
"fix:prettier:rollup.config": "prettier --write ./rollup.config.mjs",
"fix:prettier:webpack.config": "prettier --write ./webpack.config.mjs",
"auto-build": "npm run build",
"build": "tsc -p tsconfig.json && rollup -c && webpack --mode production",
"build-clean": "npm run clean && npm run build",
"build-dist": "npm run build",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.7",
"@babel/node": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/http-errors": "^2.0.5",
"@types/node": "^24.0.10",
"babel-preset-es2015": "^6.24.1",
"http-errors": "^2.0.0",
"node-polyfill-webpack-plugin": "^4.1.0",
"prettier": "3.6.2",
"rollup": "^4.44.1",
"rollup-preserve-directives": "^1.1.3",
"safe-stable-stringify": "^2.5.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"webpack": "^5.99.6",
"webpack-cli": "^6.0.1"
}
}