spawn-rx 5.1.2 → 6.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.
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "spawn-rx",
3
- "version": "5.1.2",
3
+ "version": "6.0.1",
4
4
  "description": "An Rx-version of child_process.spawn",
5
5
  "scripts": {
6
6
  "doc": "echo \"esdoc may not work correctly\" && esdoc -c ./esdoc.json",
7
- "compile": "tsc -p ./tsconfig.json",
8
- "prepublishOnly": "npm run build",
9
- "lint": "npx eslint .",
10
- "test": "mocha --compilers ts:ts-node/register ./test/*",
11
- "build": "npm-run-all compile test"
7
+ "compile": "tsgo -p ./tsconfig.json",
8
+ "prepublishOnly": "bun run build",
9
+ "check": "biome check",
10
+ "fix": "biome check --write --unsafe .",
11
+ "test": "bun test",
12
+ "build": "bun run compile && bun run test"
12
13
  },
13
14
  "repository": {
14
15
  "type": "git",
@@ -23,37 +24,24 @@
23
24
  "bugs": {
24
25
  "url": "https://github.com/anaisbetts/spawn-rx/issues"
25
26
  },
26
- "main": "lib/src/index.js",
27
- "typings": "lib/src/index.d.ts",
27
+ "main": "lib/index.js",
28
+ "typings": "lib/index.d.ts",
28
29
  "homepage": "https://github.com/anaisbetts/spawn-rx",
29
30
  "dependencies": {
30
31
  "debug": "^4.3.7",
32
+ "lru-cache": "^11.2.4",
31
33
  "rxjs": "^7.8.1"
32
34
  },
33
35
  "devDependencies": {
34
- "@eslint/eslintrc": "^3.1.0",
35
- "@eslint/js": "^9.14.0",
36
- "@types/chai": "^4.3.20",
37
- "@types/chai-as-promised": "^7.1.8",
36
+ "@biomejs/biome": "^2.3.0",
38
37
  "@types/debug": "^4.1.12",
39
- "@types/mocha": "^2.2.48",
40
- "@types/node": "^8.10.66",
38
+ "@types/node": "^22.0.0",
39
+ "@typescript/native-preview": "^7.0.0-dev.20251221.1",
41
40
  "babel-register": "^6.23.0",
42
- "chai": "^4.5.0",
43
- "chai-as-promised": "^7.1.2",
44
41
  "esdoc": "^1.1.0",
45
42
  "esdoc-es7-plugin": "0.0.3",
46
43
  "esdoc-plugin-async-to-sync": "^0.5.0",
47
- "eslint": "^9.14.0",
48
- "eslint-config-prettier": "^9.1.0",
49
- "eslint-plugin-prettier": "^5.2.1",
50
44
  "marked": "^0.5.0",
51
- "mocha": "^4.0.0",
52
- "npm-run-all": "^4.0.2",
53
- "prettier": "^3.3.3",
54
- "ts-node": "^3.3.0",
55
- "typescript": "^5.6.3",
56
- "typescript-eslint": "^8.14.0",
57
45
  "uuid": "3.0.1"
58
46
  }
59
- }
47
+ }