lltz 0.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/data/timezones.lltz +0 -0
  2. package/package.json +12 -10
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lltz",
3
- "version": "0.0.1",
3
+ "version": "1.0.0",
4
4
  "author": "Utkarsh Kukreti <utkarshkukreti@gmail.com>",
5
5
  "description": "A high-performance, memory-efficient offline timezone lookup library for TypeScript using a custom binary format and quadtree spatial indexing.",
6
6
  "keywords": [
@@ -20,6 +20,7 @@
20
20
  },
21
21
  "license": "MIT",
22
22
  "type": "module",
23
+ "packageManager": "pnpm@10.28.0",
23
24
  "main": "./dist/index.js",
24
25
  "module": "./dist/index.js",
25
26
  "types": "./dist/index.d.ts",
@@ -31,6 +32,15 @@
31
32
  "data/timezones.lltz",
32
33
  "dist"
33
34
  ],
35
+ "scripts": {
36
+ "build": "tsc && tsdown",
37
+ "prepublishOnly": "make && pnpm build",
38
+ "lint": "prettier --check .",
39
+ "format": "prettier --write .",
40
+ "test": "node --max-old-space-size=8192 tests/index.ts",
41
+ "bench": "node benches/index.ts",
42
+ "bench:memory": "node benches/memory.ts lltz:timezones && node benches/memory.ts geo-tz:timezones"
43
+ },
34
44
  "devDependencies": {
35
45
  "@ianvs/prettier-plugin-sort-imports": "4.7.0",
36
46
  "@types/node": "24.10.8",
@@ -39,13 +49,5 @@
39
49
  "tinybench": "6.0.0",
40
50
  "tsdown": "0.19.0",
41
51
  "typescript": "5.9.3"
42
- },
43
- "scripts": {
44
- "build": "tsc && tsdown",
45
- "lint": "prettier --check .",
46
- "format": "prettier --write .",
47
- "test": "node --max-old-space-size=8192 tests/index.ts",
48
- "bench": "node benches/index.ts",
49
- "bench:memory": "node benches/memory.ts lltz:timezones && node benches/memory.ts geo-tz:timezones"
50
52
  }
51
- }
53
+ }