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