UNPKG

sqlocal

Version:

SQLocal makes it easy to run SQLite3 in the browser, backed by the origin private file system.

97 lines (96 loc) 2.17 kB
{ "name": "sqlocal", "version": "0.14.0", "type": "module", "types": "./dist/index.d.ts", "browser": "./dist/index.js", "module": "./dist/index.js", "exports": { ".": { "types": "./dist/index.d.ts", "browser": "./dist/index.js", "import": "./dist/index.js" }, "./drizzle": { "types": "./dist/drizzle/index.d.ts", "browser": "./dist/drizzle/index.js", "import": "./dist/drizzle/index.js" }, "./kysely": { "types": "./dist/kysely/index.d.ts", "browser": "./dist/kysely/index.js", "import": "./dist/kysely/index.js" } }, "sideEffects": false, "files": [ "dist", "src" ], "scripts": { "build": "tsc --project tsconfig.build.json", "typecheck": "tsc --noEmit", "test": "vitest", "test:ui": "vitest --ui", "test:ci": "vitest run", "format": "prettier . --write", "format:check": "prettier . --check", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", "docs:preview": "vitepress preview docs", "prepublishOnly": "npm run build && vitest run" }, "dependencies": { "@sqlite.org/sqlite-wasm": "^3.48.0-build4", "coincident": "^1.2.3" }, "devDependencies": { "@vitest/browser": "^3.0.3", "@vitest/ui": "^3.0.3", "drizzle-orm": "^0.38.4", "kysely": "^0.27.5", "prettier": "^3.4.2", "taze": "^0.18.0", "typescript": "^5.7.3", "vite": "^6.0.11", "vitepress": "^1.6.3", "vitest": "^3.0.3", "webdriverio": "^9.6.0", "wrangler": "^3.105.0" }, "peerDependencies": { "drizzle-orm": "*", "kysely": "*" }, "peerDependenciesMeta": { "kysely": { "optional": true }, "drizzle-orm": { "optional": true } }, "author": "Dallas Hoffman", "license": "MIT", "description": "SQLocal makes it easy to run SQLite3 in the browser, backed by the origin private file system.", "keywords": [ "browser", "sqlite", "sql", "database", "wasm", "opfs", "worker", "drizzle", "kysely" ], "repository": { "type": "git", "url": "git+https://github.com/DallasHoff/sqlocal.git" }, "homepage": "https://sqlocal.dallashoffman.com", "funding": { "type": "paypal", "url": "https://www.paypal.com/biz/fund?id=U3ZNM2Q26WJY8" } }