@testspectra/cli 1.1.5 → 1.1.7

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@testspectra/cli",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "TestSpectra Zero-Config Cross-Platform Test Runner CLI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -16,15 +16,6 @@
16
16
  "spectra": "./bin/spectra.js",
17
17
  "testspectra": "./bin/spectra.js"
18
18
  },
19
- "scripts": {
20
- "build:rust": "node scripts/ensure-runner-binary.js",
21
- "prebuild": "node scripts/ensure-runner-binary.js",
22
- "build": "tsc && node scripts/copy-demo.js",
23
- "watch": "tsc -w",
24
- "test": "vitest run",
25
- "test:watch": "vitest",
26
- "prepublishOnly": "npm run build"
27
- },
28
19
  "files": [
29
20
  "dist",
30
21
  "bin",
@@ -34,23 +25,31 @@
34
25
  "LICENSE.md"
35
26
  ],
36
27
  "dependencies": {
37
- "@clack/prompts": "catalog:",
38
- "@testspectra/matchers": "workspace:*",
39
- "chalk": "catalog:",
40
- "commander": "catalog:",
41
- "dotenv": "catalog:",
42
- "ora": "catalog:",
43
- "zod": "catalog:"
28
+ "@clack/prompts": "^1.7.0",
29
+ "chalk": "^5.3.0",
30
+ "commander": "^12.1.0",
31
+ "dotenv": "^16.4.5",
32
+ "ora": "^8.0.1",
33
+ "zod": "^3.23.8",
34
+ "@testspectra/matchers": "1.1.0"
44
35
  },
45
36
  "devDependencies": {
46
- "@types/node": "catalog:",
47
- "@wdio/globals": "catalog:",
48
- "@wdio/mocha-framework": "catalog:",
49
- "@wdio/types": "catalog:",
50
- "esbuild": "catalog:",
51
- "typescript": "catalog:",
52
- "vitest": "catalog:"
37
+ "@types/node": "^20.14.0",
38
+ "@wdio/globals": "^9.24.0",
39
+ "@wdio/mocha-framework": "^9.24.0",
40
+ "@wdio/types": "^9.24.0",
41
+ "esbuild": "^0.28.2",
42
+ "typescript": "^5.6.3",
43
+ "vitest": "^2.1.8"
53
44
  },
54
45
  "type": "module",
55
- "license": "SEE LICENSE IN LICENSE.md"
46
+ "license": "SEE LICENSE IN LICENSE.md",
47
+ "scripts": {
48
+ "build:rust": "node scripts/ensure-runner-binary.js",
49
+ "prebuild": "node scripts/ensure-runner-binary.js",
50
+ "build": "tsc && node scripts/copy-demo.js",
51
+ "watch": "tsc -w",
52
+ "test": "vitest run",
53
+ "test:watch": "vitest"
54
+ }
56
55
  }