@bjnstnkvc/db 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@bjnstnkvc/db",
3
+ "version": "0.1.0",
4
+ "description": "TypeScript database layer for IndexedDB with an API modelled on Laravel.",
5
+ "type": "module",
6
+ "main": "./dist/main.cjs",
7
+ "module": "./dist/main.js",
8
+ "types": "./dist/main.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": { "types": "./dist/main.d.ts", "default": "./dist/main.js" },
12
+ "require": { "types": "./dist/main.d.cts", "default": "./dist/main.cjs" }
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "sideEffects": false,
19
+ "scripts": {
20
+ "build": "tsup src/main.ts --format esm,cjs --dts --clean",
21
+ "test": "vitest run",
22
+ "coverage": "vitest run --coverage",
23
+ "typecheck": "tsc --noEmit"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/BJNSTNKVC/js-db.git"
28
+ },
29
+ "keywords": [
30
+ "ts",
31
+ "typescript",
32
+ "laravel",
33
+ "database",
34
+ "indexeddb",
35
+ "migrations",
36
+ "query-builder"
37
+ ],
38
+ "author": "Bojan Stankovic <dev.bojan.stankovic@gmail.com>",
39
+ "license": "MIT",
40
+ "bugs": {
41
+ "url": "https://github.com/BJNSTNKVC/js-db/issues"
42
+ },
43
+ "homepage": "https://github.com/BJNSTNKVC/js-db#readme",
44
+ "devDependencies": {
45
+ "@vitest/coverage-v8": "^1.6.0",
46
+ "fake-indexeddb": "^6.0.0",
47
+ "tsup": "^8.5.1",
48
+ "typescript": "^5.9.3",
49
+ "vitest": "^1.6.0"
50
+ }
51
+ }