idb-client 0.0.1

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/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # IndexedDB Client
2
+
3
+ > An SQL-like query (Drizzle style) for IndexedDB
4
+ >
5
+ > Still Under Development
@@ -0,0 +1,4 @@
1
+ export declare const client: {
2
+ "idb-client": string;
3
+ };
4
+ export default client;
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ const PACKAGE_NAME = 'idb-client';
2
+ export const client = { [PACKAGE_NAME]: PACKAGE_NAME };
3
+ export default client;
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "idb-client",
3
+ "version": "0.0.1",
4
+ "description": "SQL-like query (Drizzle style) for IndexedDB",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "package.json"
14
+ ],
15
+ "keywords": [
16
+ "indexed-db",
17
+ "sql",
18
+ "drizzle",
19
+ "db"
20
+ ],
21
+ "homepage": "https://toolbox.nazmul-nhb.dev",
22
+ "author": {
23
+ "name": "Nazmul Hassan",
24
+ "email": "nazmulnhb@gmail.com",
25
+ "url": "https://nazmul-nhb.dev"
26
+ },
27
+ "contributors": [
28
+ {
29
+ "name": "Nazmul Hassan",
30
+ "email": "nazmulnhb007@yahoo.com",
31
+ "url": "https://github.com/nazmul-nhb"
32
+ },
33
+ {
34
+ "name": "Nazmul Hassan",
35
+ "email": "nazmulnhb@gmail.com",
36
+ "url": "https://github.com/nhb-nazmul"
37
+ }
38
+ ],
39
+ "license": "MIT",
40
+ "devDependencies": {
41
+ "@eslint/js": "^9.39.2",
42
+ "@types/node": "^25.0.10",
43
+ "@typescript-eslint/eslint-plugin": "^8.53.1",
44
+ "@typescript-eslint/parser": "^8.53.1",
45
+ "eslint": "^9.39.2",
46
+ "eslint-config-prettier": "^10.1.8",
47
+ "eslint-plugin-prettier": "^5.5.5",
48
+ "globals": "^17.1.0",
49
+ "nhb-scripts": "^1.9.2",
50
+ "nhb-toolbox": "^4.28.66",
51
+ "prettier": "^3.8.1",
52
+ "typescript": "^5.9.3",
53
+ "typescript-eslint": "^8.53.1"
54
+ },
55
+ "scripts": {
56
+ "build": "nhb-build",
57
+ "commit": "nhb-commit",
58
+ "count": "nhb-count",
59
+ "delete": "nhb-delete",
60
+ "format": "nhb-format",
61
+ "lint": "nhb-lint"
62
+ }
63
+ }