@fgv/ts-json 5.0.2 → 5.1.0-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.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.54.0"
8
+ "packageVersion": "7.57.6"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,9 +1,21 @@
1
1
  {
2
2
  "name": "@fgv/ts-json",
3
- "version": "5.0.2",
3
+ "version": "5.1.0-1",
4
4
  "description": "Typescript utilities for working with JSON",
5
5
  "main": "lib/index.js",
6
6
  "types": "dist/ts-json.d.ts",
7
+ "scripts": {
8
+ "build": "heft build --clean",
9
+ "clean": "heft clean",
10
+ "test": "heft test --clean",
11
+ "build-docs": "typedoc --options ./config/typedoc.json",
12
+ "build-all": "rushx build; rushx build-docs",
13
+ "test-handles": "jest --runInBand --detectOpenHandles",
14
+ "clean-jest": "jest --clear-cache",
15
+ "coverage": "jest --coverage --no-cache",
16
+ "lint": "eslint src --ext .ts",
17
+ "fixlint": "eslint src --ext .ts --fix"
18
+ },
7
19
  "keywords": [
8
20
  "typescript",
9
21
  "json"
@@ -16,41 +28,41 @@
16
28
  "homepage": "https://github.com/ErikFortune/fgv/tree/main/libraries/ts-json#readme",
17
29
  "sideEffects": false,
18
30
  "devDependencies": {
31
+ "@fgv/heft-dual-rig": "workspace:*",
32
+ "@fgv/ts-utils": "workspace:*",
33
+ "@fgv/ts-utils-jest": "workspace:*",
19
34
  "@types/jest": "^29.5.14",
20
35
  "@types/mustache": "^4.2.5",
21
36
  "@types/node": "^20.14.9",
22
- "@typescript-eslint/eslint-plugin": "^8.46.2",
23
- "@typescript-eslint/parser": "^8.46.2",
24
- "eslint": "^9.39.0",
37
+ "@typescript-eslint/eslint-plugin": "^8.52.0",
38
+ "@typescript-eslint/parser": "^8.52.0",
39
+ "eslint": "^9.39.2",
25
40
  "eslint-plugin-import": "^2.32.0",
26
41
  "eslint-plugin-node": "^11.1.0",
27
42
  "eslint-plugin-promise": "^7.2.1",
28
43
  "jest": "^29.7.0",
29
44
  "jest-extended": "^4.0.2",
30
45
  "mustache": "^4.2.0",
31
- "rimraf": "^6.1.0",
32
- "ts-jest": "^29.4.5",
46
+ "rimraf": "^6.1.2",
47
+ "ts-jest": "^29.4.6",
33
48
  "ts-node": "^10.9.2",
34
49
  "typescript": "5.9.3",
35
50
  "eslint-plugin-n": "^17.23.1",
36
- "@rushstack/heft-node-rig": "2.11.4",
37
- "@rushstack/heft": "1.1.3",
51
+ "@rushstack/heft-node-rig": "2.11.26",
52
+ "@rushstack/heft": "1.2.6",
38
53
  "heft-jest": "~1.0.2",
39
54
  "@types/heft-jest": "1.0.6",
40
- "@microsoft/api-documenter": "^7.27.3",
41
- "@rushstack/eslint-config": "4.5.3",
42
- "eslint-plugin-tsdoc": "~0.4.0",
43
- "@rushstack/heft-jest-plugin": "1.1.3",
44
- "@microsoft/api-extractor": "^7.53.3",
45
- "@fgv/heft-dual-rig": "0.1.0",
46
- "@fgv/ts-utils": "5.0.2",
47
- "@fgv/ts-json-base": "5.0.2",
48
- "@fgv/ts-utils-jest": "5.0.2"
55
+ "@microsoft/api-documenter": "^7.28.2",
56
+ "@fgv/ts-json-base": "workspace:*",
57
+ "@rushstack/eslint-config": "4.6.4",
58
+ "eslint-plugin-tsdoc": "~0.5.2",
59
+ "@rushstack/heft-jest-plugin": "1.2.6",
60
+ "@microsoft/api-extractor": "^7.55.2"
49
61
  },
50
62
  "peerDependencies": {
51
- "mustache": "^4.2.0",
52
- "@fgv/ts-utils": "5.0.2",
53
- "@fgv/ts-json-base": "5.0.2"
63
+ "@fgv/ts-utils": "workspace:*",
64
+ "@fgv/ts-json-base": "workspace:*",
65
+ "mustache": "^4.2.0"
54
66
  },
55
67
  "exports": {
56
68
  ".": {
@@ -68,17 +80,5 @@
68
80
  "repository": {
69
81
  "type": "git",
70
82
  "url": "https://github.com/ErikFortune/fgv.git"
71
- },
72
- "scripts": {
73
- "build": "heft build --clean",
74
- "clean": "heft clean",
75
- "test": "heft test --clean",
76
- "build-docs": "api-documenter markdown --input-folder ./temp --output-folder docs",
77
- "build-all": "rushx build; rushx build-docs",
78
- "test-handles": "jest --runInBand --detectOpenHandles",
79
- "clean-jest": "jest --clear-cache",
80
- "coverage": "jest --coverage --no-cache",
81
- "lint": "eslint src --ext .ts",
82
- "fixlint": "eslint src --ext .ts --fix"
83
83
  }
84
- }
84
+ }