@fgv/ts-extras 5.1.0-1 → 5.1.0-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 (1) hide show
  1. package/package.json +21 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fgv/ts-extras",
3
- "version": "5.1.0-1",
3
+ "version": "5.1.0-3",
4
4
  "description": "Assorted Typescript Utilities",
5
5
  "main": "lib/index.js",
6
6
  "types": "dist/ts-extras.d.ts",
@@ -42,18 +42,6 @@
42
42
  }
43
43
  }
44
44
  },
45
- "scripts": {
46
- "build": "heft build --clean",
47
- "clean": "heft clean",
48
- "test": "heft test --clean",
49
- "build-docs": "typedoc --options ./config/typedoc.json",
50
- "build-all": "rushx build; rushx build-docs",
51
- "test-handles": "jest --runInBand --detectOpenHandles",
52
- "clean-jest": "jest --clear-cache",
53
- "coverage": "jest --coverage",
54
- "lint": "eslint src --ext .ts",
55
- "fixlint": "eslint src --ext .ts --fix"
56
- },
57
45
  "sideEffects": false,
58
46
  "keywords": [
59
47
  "typescript",
@@ -66,7 +54,6 @@
66
54
  },
67
55
  "homepage": "https://github.com/ErikFortune/fgv/tree/main/libraries/ts-extras#ts-utils",
68
56
  "devDependencies": {
69
- "@fgv/heft-dual-rig": "workspace:*",
70
57
  "@jest/expect-utils": "^29.7.0",
71
58
  "@microsoft/api-documenter": "^7.28.2",
72
59
  "@microsoft/api-extractor": "^7.55.2",
@@ -96,25 +83,38 @@
96
83
  "@types/heft-jest": "1.0.6",
97
84
  "@rushstack/heft-jest-plugin": "1.2.6",
98
85
  "eslint-plugin-tsdoc": "~0.5.2",
99
- "@fgv/ts-utils-jest": "workspace:*",
100
- "@fgv/ts-utils": "workspace:*",
101
86
  "@types/js-yaml": "~4.0.9",
102
87
  "typedoc": "~0.28.16",
103
- "typedoc-plugin-markdown": "~4.9.0"
88
+ "typedoc-plugin-markdown": "~4.9.0",
89
+ "@fgv/heft-dual-rig": "5.1.0-3",
90
+ "@fgv/ts-utils": "5.1.0-3",
91
+ "@fgv/ts-utils-jest": "5.1.0-3"
104
92
  },
105
93
  "dependencies": {
106
94
  "luxon": "^3.7.2",
107
95
  "mustache": "^4.2.0",
108
96
  "papaparse": "^5.4.1",
109
97
  "fflate": "~0.8.2",
110
- "@fgv/ts-json-base": "workspace:*",
111
- "js-yaml": "~4.1.1"
98
+ "js-yaml": "~4.1.1",
99
+ "@fgv/ts-json-base": "5.1.0-3"
112
100
  },
113
101
  "peerDependencies": {
114
- "@fgv/ts-utils": "workspace:*"
102
+ "@fgv/ts-utils": "5.1.0-3"
115
103
  },
116
104
  "repository": {
117
105
  "type": "git",
118
106
  "url": "https://github.com/ErikFortune/fgv.git"
107
+ },
108
+ "scripts": {
109
+ "build": "heft build --clean",
110
+ "clean": "heft clean",
111
+ "test": "heft test --clean",
112
+ "build-docs": "typedoc --options ./config/typedoc.json",
113
+ "build-all": "rushx build; rushx build-docs",
114
+ "test-handles": "jest --runInBand --detectOpenHandles",
115
+ "clean-jest": "jest --clear-cache",
116
+ "coverage": "jest --coverage",
117
+ "lint": "eslint src --ext .ts",
118
+ "fixlint": "eslint src --ext .ts --fix"
119
119
  }
120
- }
120
+ }