@vltpkg/cmd-shim 0.0.0-9 → 1.0.0-rc.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 (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +11 -10
package/README.md CHANGED
@@ -4,9 +4,9 @@ This is a module for writing `.cmd` and `.ps1` shims for executables
4
4
  on Windows, since shebangs are not supported on Windows, and thus
5
5
  symlinks are not sufficient for running executables.
6
6
 
7
- **[Usage](#usage)** · **[Note](#note)**
7
+ **[Note](#note)** · **[Usage](#usage)**
8
8
 
9
- ## Overview
9
+ ## Note
10
10
 
11
11
  This module doesn't do anything on non-Windows platforms.
12
12
 
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@vltpkg/cmd-shim",
3
3
  "description": "Executable script shims for Windows",
4
- "version": "0.0.0-9",
4
+ "version": "1.0.0-rc.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/vltpkg/vltpkg.git",
8
8
  "directory": "src/cmd-shim"
9
9
  },
10
+ "author": "vlt technology inc. <support@vlt.sh> (http://vlt.sh)",
10
11
  "tshy": {
11
12
  "selfLink": false,
12
13
  "liveDev": true,
@@ -19,20 +20,19 @@
19
20
  }
20
21
  },
21
22
  "dependencies": {
22
- "@vltpkg/error-cause": "0.0.0-9",
23
- "@vltpkg/rollback-remove": "0.0.0-9"
23
+ "@vltpkg/rollback-remove": "1.0.0-rc.1",
24
+ "@vltpkg/error-cause": "1.0.0-rc.1"
24
25
  },
25
26
  "devDependencies": {
26
- "@eslint/js": "^9.20.0",
27
- "@types/eslint__js": "^8.42.3",
28
- "@types/node": "^22.13.1",
29
- "eslint": "^9.20.0",
30
- "prettier": "^3.4.2",
27
+ "@eslint/js": "^9.34.0",
28
+ "@types/node": "^22.17.2",
29
+ "eslint": "^9.34.0",
30
+ "prettier": "^3.6.2",
31
31
  "tap": "^21.1.0",
32
32
  "tshy": "^3.0.2",
33
- "typedoc": "0.27.6",
33
+ "typedoc": "~0.27.9",
34
34
  "typescript": "5.7.3",
35
- "typescript-eslint": "^8.23.0"
35
+ "typescript-eslint": "^8.40.0"
36
36
  },
37
37
  "license": "BSD-2-Clause-Patent",
38
38
  "engines": {
@@ -64,6 +64,7 @@
64
64
  "snap": "tap",
65
65
  "test": "tap",
66
66
  "posttest": "tsc --noEmit",
67
+ "tshy": "tshy",
67
68
  "typecheck": "tsc --noEmit"
68
69
  }
69
70
  }