which-webstorm 4.1.5 → 4.1.6-dev-f17199d

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/bin/webstorm.js +1 -1
  2. package/package.json +17 -30
package/bin/webstorm.js CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { execa } from "execa";
4
3
  import { statSync } from "node:fs";
5
4
  import { resolve } from "node:path";
5
+ import { execa } from "execa";
6
6
  import { WebStormLocator } from "../output/main.js";
7
7
 
8
8
  new WebStormLocator().findWebstormAsync().then(webstorm => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "which-webstorm",
4
- "version": "4.1.5",
4
+ "version": "4.1.6-dev-f17199d",
5
5
  "description": "Find WebStorm binary",
6
6
  "license": "MIT",
7
7
  "author": "Oliver Salzburg <oliver.salzburg@gmail.com>",
@@ -19,9 +19,8 @@
19
19
  "build": "tsc",
20
20
  "clean": "rm -rf ./output",
21
21
  "lint": "yarn run lint:all",
22
- "lint:all": "yarn run lint:eslint && yarn run lint:prettier && yarn run lint:tsc",
23
- "lint:eslint": "eslint .",
24
- "lint:prettier": "prettier --check .",
22
+ "lint:all": "yarn run lint:biome && yarn run lint:tsc",
23
+ "lint:biome": "biome check .",
25
24
  "lint:tsc": "tsc --noEmit",
26
25
  "nextversion": "./.scripts/manifest-version.cjs",
27
26
  "test": "yarn build && node $(yarn bin mocha) output/*.test.js",
@@ -31,35 +30,23 @@
31
30
  },
32
31
  "types": "output/main.d.ts",
33
32
  "dependencies": {
34
- "@oliversalzburg/js-utils": "0.0.46",
35
- "execa": "9.2.0",
36
- "semver": "7.6.2",
37
- "which": "4.0.0"
33
+ "@oliversalzburg/js-utils": "0.2.8",
34
+ "execa": "9.5.2",
35
+ "semver": "7.7.1",
36
+ "which": "5.0.0"
38
37
  },
39
38
  "devDependencies": {
40
- "@eslint/js": "9.5.0",
41
- "@oliversalzburg/eslint-config": "0.0.11",
42
- "@types/chai": "4.3.16",
43
- "@types/eslint": "8.56.10",
44
- "@types/mocha": "10.0.6",
45
- "@types/node": "20.14.6",
39
+ "@biomejs/biome": "1.9.4",
40
+ "@types/chai": "5.0.1",
41
+ "@types/mocha": "10.0.10",
42
+ "@types/node": "22.13.5",
46
43
  "@types/semver": "7.5.8",
47
44
  "@types/which": "3.0.4",
48
- "c8": "10.1.2",
49
- "chai": "5.1.1",
50
- "eslint": "9.5.0",
51
- "eslint-config-prettier": "9.1.0",
52
- "eslint-plugin-jsdoc": "48.2.12",
53
- "eslint-plugin-tsdoc": "0.3.0",
54
- "globals": "15.6.0",
55
- "lint-staged": "15.2.7",
56
- "mocha": "10.4.0",
57
- "prettier": "3.3.2",
58
- "prettier-package-json": "2.8.0",
59
- "prettier-plugin-organize-imports": "3.2.4",
60
- "prettier-plugin-sh": "0.14.0",
61
- "typescript": "5.4.5",
62
- "typescript-eslint": "8.0.0-alpha.30"
45
+ "c8": "10.1.3",
46
+ "chai": "5.1.2",
47
+ "lint-staged": "15.3.0",
48
+ "mocha": "11.0.1",
49
+ "typescript": "5.7.2"
63
50
  },
64
51
  "keywords": [
65
52
  "webstorm"
@@ -70,5 +57,5 @@
70
57
  "publishConfig": {
71
58
  "registry": "https://registry.npmjs.org"
72
59
  },
73
- "packageManager": "yarn@4.3.0"
60
+ "packageManager": "yarn@4.6.0"
74
61
  }