UNPKG

@storecraft/database-sql-base

Version:

Official SQL Database driver for storecraft

55 lines (54 loc) 1.57 kB
{ "name": "@storecraft/database-sql-base", "version": "1.3.1", "description": "Official SQL Database driver for storecraft", "license": "MIT", "author": "Tomer Shalev (https://github.com/store-craft)", "homepage": "https://github.com/store-craft/storecraft", "repository": { "type": "git", "url": "https://github.com/store-craft/storecraft.git", "directory": "packages/databases/database-sql-base" }, "keywords": [ "commerce", "dashboard", "code", "storecraft" ], "type": "module", "main": "index.js", "types": "./types.public.d.ts", "exports": { ".": { "import": "./index.js", "types": "./types.public.d.ts" }, "./*": { "import": "./*" } }, "scripts": { "database-sql-base:test:sqlite": "node ./tests/runner.sqlite-local.test.js", "database-sql-base:test:postgres": "node ./tests/runner.postgres-local.test.js", "database-sql-base:test:mysql": "node ./tests/runner.mysql-local.test.js", "test": "npm run database-sql-base:test:sqlite && npm run database-sql-base:test:postgres && npm run database-sql-base:test:mysql", "sc-publish-patch": "npm version patch && npm publish" }, "dependencies": { "@storecraft/core": "^1.0.0", "kysely": "^0.28.1" }, "devDependencies": { "@types/better-sqlite3": "^7.6.9", "@types/node": "^20.11.0", "@types/pg": "^8.11.2", "better-sqlite3": "^11.7.0", "dotenv": "^16.3.1", "mysql2": "^3.9.2", "pg": "^8.11.3", "tarn": "^3.0.2", "tedious": "^18.1.0", "uvu": "^0.5.6" } }