functype 0.17.0 → 0.17.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.
Files changed (1) hide show
  1. package/package.json +15 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functype",
3
- "version": "0.17.0",
3
+ "version": "0.17.1",
4
4
  "type": "module",
5
5
  "description": "A functional programming library for TypeScript, using immutable data structures and type classes",
6
6
  "author": "jordan.burke@gmail.com",
@@ -12,36 +12,36 @@
12
12
  "homepage": "https://functype.org/",
13
13
  "url": "https://github.com/jordanburke/functype",
14
14
  "devDependencies": {
15
- "@eslint/compat": "^1.4.0",
15
+ "@eslint/compat": "^1.4.1",
16
16
  "@eslint/eslintrc": "^3.3.1",
17
- "@eslint/js": "^9.38.0",
17
+ "@eslint/js": "^9.39.1",
18
18
  "@semantic-release/commit-analyzer": "^13.0.1",
19
19
  "@semantic-release/github": "^11.0.6",
20
20
  "@semantic-release/npm": "^12.0.2",
21
21
  "@semantic-release/release-notes-generator": "^14.1.0",
22
- "@types/node": "^22.18.11",
23
- "@typescript-eslint/eslint-plugin": "^8.46.1",
24
- "@typescript-eslint/parser": "^8.46.1",
25
- "@vitest/coverage-v8": "^3.2.4",
26
- "@vitest/ui": "^3.2.4",
22
+ "@types/node": "^22.19.0",
23
+ "@typescript-eslint/eslint-plugin": "^8.46.3",
24
+ "@typescript-eslint/parser": "^8.46.3",
25
+ "@vitest/coverage-v8": "^4.0.8",
26
+ "@vitest/ui": "^4.0.8",
27
27
  "cross-env": "^10.1.0",
28
- "eslint": "^9.38.0",
28
+ "eslint": "^9.39.1",
29
29
  "eslint-config-functype": "1.3.0",
30
30
  "eslint-config-prettier": "^10.1.8",
31
31
  "eslint-plugin-functional": "^9.0.2",
32
32
  "eslint-plugin-prettier": "^5.5.4",
33
33
  "eslint-plugin-simple-import-sort": "^12.1.1",
34
34
  "fast-check": "^4.3.0",
35
- "globals": "^16.4.0",
35
+ "globals": "^16.5.0",
36
36
  "prettier": "^3.6.2",
37
- "rimraf": "^6.0.1",
37
+ "rimraf": "^6.1.0",
38
38
  "semantic-release": "^24.2.9",
39
39
  "ts-node": "^10.9.2",
40
40
  "tsup": "^8.5.0",
41
41
  "tsx": "^4.20.6",
42
42
  "typedoc": "^0.28.14",
43
43
  "typescript": "5.9.2",
44
- "vitest": "^3.2.4"
44
+ "vitest": "^4.0.8"
45
45
  },
46
46
  "types": "./dist/index.d.ts",
47
47
  "module": "./dist/index.mjs",
@@ -152,7 +152,7 @@
152
152
  "sideEffects": false,
153
153
  "scripts": {
154
154
  "validate": "pnpm validate:core && pnpm validate:landing",
155
- "validate:core": "pnpm format && pnpm lint && pnpm test && pnpm build",
155
+ "validate:core": "pnpm format && pnpm lint && pnpm test && pnpm docs:validate && pnpm build",
156
156
  "validate:landing": "cd landing && pnpm validate",
157
157
  "format": "prettier --write .",
158
158
  "format:check": "prettier --check .",
@@ -172,8 +172,8 @@
172
172
  "docs:preprocess": "tsx scripts/preprocess-docs.ts",
173
173
  "docs": "pnpm docs:preprocess && typedoc",
174
174
  "docs:watch": "typedoc --watch",
175
- "docs:validate": "tsx scripts/validate-docs.ts",
176
- "postdocs": "node -e \"console.log('Documentation generated in ./typedocs')\"",
175
+ "docs:sync": "tsx scripts/sync-docs.ts",
176
+ "docs:validate": "tsx scripts/validate-docs.ts && tsx scripts/sync-docs.ts",
177
177
  "analyze:size": "pnpm build && node ./scripts/analyze-bundle-size.js",
178
178
  "landing:dev": "cd landing && pnpm dev",
179
179
  "landing:build": "cd landing && pnpm build",