@fgv/ts-res-browser-cli 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.
File without changes
package/package.json CHANGED
@@ -1,12 +1,19 @@
1
1
  {
2
2
  "name": "@fgv/ts-res-browser-cli",
3
- "version": "5.0.2",
3
+ "version": "5.1.0-1",
4
4
  "description": "Command-line interface to launch ts-res-browser with specified options",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
7
7
  "bin": {
8
8
  "ts-res-browser-cli": "bin/ts-res-browser-cli.js"
9
9
  },
10
+ "scripts": {
11
+ "build": "heft build --clean",
12
+ "test": "echo 'No tests configured for ts-res-browser-cli - this is a CLI launcher tool' && exit 0",
13
+ "clean": "heft clean",
14
+ "lint": "eslint src --ext .ts",
15
+ "fixlint": "eslint src --ext .ts --fix"
16
+ },
10
17
  "keywords": [
11
18
  "ts-res",
12
19
  "browser",
@@ -21,33 +28,26 @@
21
28
  "node": ">=20.0.0"
22
29
  },
23
30
  "dependencies": {
24
- "commander": "^11.0.0",
25
- "@fgv/ts-res": "5.0.2",
26
- "@fgv/ts-json": "5.0.2",
27
- "@fgv/ts-json-base": "5.0.2",
28
- "@fgv/ts-res-browser": "5.0.2",
29
- "@fgv/ts-utils": "5.0.2"
31
+ "@fgv/ts-res": "workspace:*",
32
+ "@fgv/ts-utils": "workspace:*",
33
+ "@fgv/ts-json": "workspace:*",
34
+ "@fgv/ts-json-base": "workspace:*",
35
+ "@fgv/ts-res-browser": "workspace:*",
36
+ "commander": "^11.0.0"
30
37
  },
31
38
  "devDependencies": {
32
- "@rushstack/eslint-config": "4.5.3",
33
- "@rushstack/heft": "1.1.3",
34
- "@rushstack/heft-node-rig": "2.11.4",
39
+ "@fgv/ts-utils-jest": "workspace:*",
40
+ "@rushstack/eslint-config": "4.6.4",
41
+ "@rushstack/heft": "1.2.6",
42
+ "@rushstack/heft-node-rig": "2.11.26",
35
43
  "@types/jest": "^29.5.14",
36
44
  "@types/node": "^20.14.9",
37
- "eslint": "^9.39.0",
45
+ "eslint": "^9.39.2",
38
46
  "jest": "^29.7.0",
39
- "typescript": "5.9.3",
40
- "@fgv/ts-utils-jest": "5.0.2"
47
+ "typescript": "5.9.3"
41
48
  },
42
49
  "repository": {
43
50
  "type": "git",
44
51
  "url": "https://github.com/ErikFortune/fgv.git"
45
- },
46
- "scripts": {
47
- "build": "heft build --clean",
48
- "test": "echo 'No tests configured for ts-res-browser-cli - this is a CLI launcher tool' && exit 0",
49
- "clean": "heft clean",
50
- "lint": "eslint src --ext .ts",
51
- "fixlint": "eslint src --ext .ts --fix"
52
52
  }
53
- }
53
+ }