scdate 0.2.2 → 0.2.3

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 +1 -1
  2. package/package.json +12 -11
package/README.md CHANGED
@@ -37,6 +37,6 @@ The library was designed with schedules in mind that do not require second or sm
37
37
 
38
38
  For a list of valid time zones run `Intl.supportedValuesOf('timeZone')` in your environment.
39
39
 
40
- # API Reference
40
+ ## API Reference
41
41
 
42
42
  See [docs](docs/README.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scdate",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dist/index.js"
@@ -25,10 +25,9 @@
25
25
  "smoke": "yarn build && yarn lint && yarn test:utc",
26
26
  "docs": "typedoc && prettier --ignore-unknown --write docs/",
27
27
  "-- PRE-COMMIT HOOKS --": "",
28
- "postinstall": "husky install",
28
+ "postinstall": "husky || true",
29
29
  "prepublishOnly": "pinst --disable",
30
- "postpublish": "pinst --enable",
31
- "prepare": "husky"
30
+ "postpublish": "pinst --enable"
32
31
  },
33
32
  "dependencies": {
34
33
  "@date-fns/utc": "^1.2.0",
@@ -36,20 +35,21 @@
36
35
  "date-fns-tz": "^3.1.3"
37
36
  },
38
37
  "devDependencies": {
39
- "@eslint/js": "^9.1.1",
38
+ "@eslint/js": "^9.2.0",
40
39
  "@tsconfig/strictest": "^2.0.5",
41
- "@types/node": "^20.12.7",
42
- "eslint": "^9.1.1",
40
+ "@types/node": "^20.12.11",
41
+ "eslint": "^9.2.0",
43
42
  "husky": "^9.0.11",
43
+ "is-ci": "^3.0.1",
44
44
  "lint-staged": "^15.2.2",
45
45
  "pinst": "^3.0.0",
46
46
  "prettier": "^3.2.5",
47
- "rimraf": "^5.0.5",
47
+ "rimraf": "^5.0.7",
48
48
  "typedoc": "^0.25.13",
49
- "typedoc-plugin-markdown": "^4.0.0-next.60",
49
+ "typedoc-plugin-markdown": "^4.0.2",
50
50
  "typescript": "^5.4.5",
51
- "typescript-eslint": "^7.8.0",
52
- "vitest": "^1.5.2"
51
+ "typescript-eslint": "^7.9.0",
52
+ "vitest": "^1.6.0"
53
53
  },
54
54
  "prettier": {
55
55
  "tabWidth": 2,
@@ -69,6 +69,7 @@
69
69
  "schedule",
70
70
  "timestamp"
71
71
  ],
72
+ "license": "MIT",
72
73
  "lint-staged": {
73
74
  "*.{ts,tsx,mjs}": "eslint --cache",
74
75
  "*": "prettier --ignore-unknown --write"