ts-time-utils 3.0.0 → 3.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.
Files changed (2) hide show
  1. package/README.md +331 -1344
  2. package/package.json +7 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-time-utils",
3
- "version": "3.0.0",
3
+ "version": "3.0.4",
4
4
  "description": "A comprehensive TypeScript utility library for time, dates, durations, and calendar operations with full tree-shaking support",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -152,7 +152,7 @@
152
152
  "build:esm": "tsc -p tsconfig.esm.json",
153
153
  "test": "vitest run",
154
154
  "test:watch": "vitest",
155
- "lint": "eslint src --ext .ts",
155
+ "lint": "eslint src",
156
156
  "size": "size-limit",
157
157
  "size:check": "size-limit --json > docs/bundle-sizes.json",
158
158
  "prepublishOnly": "npm run build"
@@ -189,9 +189,14 @@
189
189
  "author": "",
190
190
  "license": "MIT",
191
191
  "devDependencies": {
192
+ "@eslint/js": "^9.39.2",
192
193
  "@size-limit/file": "^12.0.0",
194
+ "@typescript-eslint/eslint-plugin": "^8.51.0",
195
+ "@typescript-eslint/parser": "^8.51.0",
196
+ "eslint": "^9.39.2",
193
197
  "size-limit": "^12.0.0",
194
198
  "typescript": "^5.9.2",
199
+ "typescript-eslint": "^8.51.0",
195
200
  "vitest": "^3.2.4"
196
201
  },
197
202
  "repository": {