locality-idb 0.0.1 → 0.0.4

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.
@@ -0,0 +1,4 @@
1
+ //#region src/index.d.ts
2
+ declare function fn(): string;
3
+ //#endregion
4
+ export { fn };
package/dist/index.mjs ADDED
@@ -0,0 +1,7 @@
1
+ //#region src/index.ts
2
+ function fn() {
3
+ return "Hello, tsdown!";
4
+ }
5
+
6
+ //#endregion
7
+ export { fn };
package/package.json CHANGED
@@ -1,64 +1,83 @@
1
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
- }
2
+ "name": "locality-idb",
3
+ "type": "module",
4
+ "version": "0.0.4",
5
+ "description": "SQL-like query (Drizzle style) for IndexedDB",
6
+ "author": {
7
+ "name": "Nazmul Hassan",
8
+ "email": "nazmulnhb@gmail.com",
9
+ "url": "https://nazmul-nhb.dev"
10
+ },
11
+ "contributors": [
12
+ {
13
+ "name": "Nazmul Hassan",
14
+ "email": "nazmulnhb007@yahoo.com",
15
+ "url": "https://github.com/nazmul-nhb"
16
+ },
17
+ {
18
+ "name": "Nazmul Hassan",
19
+ "email": "nazmulnhb@gmail.com",
20
+ "url": "https://github.com/nhb-nazmul"
21
+ }
22
+ ],
23
+ "license": "MIT",
24
+ "homepage": "https://github.com/nazmul-nhb/locality-idb#readme",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/nazmul-nhb/locality-idb.git"
28
+ },
29
+ "bugs": {
30
+ "url": "https://github.com/nazmul-nhb/locality-idb/issues"
31
+ },
32
+ "exports": {
33
+ ".": "./dist/index.mjs",
34
+ "./package.json": "./package.json"
35
+ },
36
+ "types": "./dist/index.d.mts",
37
+ "publishConfig": {
38
+ "access": "public"
39
+ },
40
+ "files": [
41
+ "dist",
42
+ "README.md",
43
+ "package.json"
44
+ ],
45
+ "keywords": [
46
+ "indexed-db",
47
+ "sql",
48
+ "drizzle",
49
+ "db",
50
+ "locality",
51
+ "database"
52
+ ],
53
+ "devDependencies": {
54
+ "@eslint/js": "^9.39.2",
55
+ "@types/node": "^25.0.10",
56
+ "@typescript-eslint/eslint-plugin": "^8.53.1",
57
+ "@typescript-eslint/parser": "^8.53.1",
58
+ "eslint": "^9.39.2",
59
+ "eslint-config-prettier": "^10.1.8",
60
+ "eslint-plugin-prettier": "^5.5.5",
61
+ "globals": "^17.1.0",
62
+ "nhb-scripts": "^1.9.2",
63
+ "prettier": "^3.8.1",
64
+ "tsdown": "^0.20.1",
65
+ "typescript": "^5.9.3",
66
+ "typescript-eslint": "^8.53.1",
67
+ "vitest": "^4.0.18"
68
+ },
69
+ "dependencies": {
70
+ "nhb-toolbox": "^4.28.66"
71
+ },
72
+ "scripts": {
73
+ "build": "tsdown",
74
+ "dev": "tsdown --watch",
75
+ "test": "vitest",
76
+ "typecheck": "tsc --noEmit",
77
+ "commit": "nhb-commit",
78
+ "count": "nhb-count",
79
+ "delete": "nhb-delete",
80
+ "format": "nhb-format",
81
+ "lint": "nhb-lint"
82
+ }
83
+ }
package/dist/index.d.ts DELETED
@@ -1,4 +0,0 @@
1
- export declare const locality: {
2
- locality: string;
3
- };
4
- export default locality;
package/dist/index.js DELETED
@@ -1,3 +0,0 @@
1
- const PACKAGE_NAME = 'locality';
2
- export const locality = { [PACKAGE_NAME]: PACKAGE_NAME };
3
- export default locality;