@systemfsoftware/stryker-js-typescript-checker 5.0.4 → 7.0.0
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/CHANGELOG.md +66 -0
- package/README.md +28 -16
- package/dist/execAsync-CUNMu62l.mjs +10 -0
- package/dist/execAsync-zBkwnfr9.mjs +10 -0
- package/dist/getMachineId-bsd-Ci7jvBhd.mjs +26 -0
- package/dist/getMachineId-bsd-DEwG9Ywj.mjs +26 -0
- package/dist/getMachineId-darwin-K9sCO4zL.mjs +23 -0
- package/dist/getMachineId-darwin-s7YULPyU.mjs +23 -0
- package/dist/getMachineId-linux-B4KmiJGj.mjs +19 -0
- package/dist/getMachineId-linux-NPalN4Yq.mjs +19 -0
- package/dist/getMachineId-unsupported-DpGC7koj.mjs +14 -0
- package/dist/getMachineId-unsupported-Dqj1BWmV.mjs +14 -0
- package/dist/getMachineId-win-B9REJgj2.mjs +25 -0
- package/dist/getMachineId-win-tvSIkbRI.mjs +25 -0
- package/dist/index.d.mts +5 -5
- package/dist/index.mjs +6 -1281
- package/dist/main.d.mts +1 -0
- package/dist/main.mjs +53078 -0
- package/package.json +68 -25
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@systemfsoftware/stryker-js-typescript-checker",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
|
-
"url": "git+https://github.com/systemfsoftware/
|
|
7
|
-
"directory": "packages/stryker-js
|
|
6
|
+
"url": "git+https://github.com/systemfsoftware/stryker-js-effect.git",
|
|
7
|
+
"directory": "packages/stryker-js-typescript-checker"
|
|
8
8
|
},
|
|
9
|
-
"homepage": "https://github.com/systemfsoftware/
|
|
10
|
-
"bugs": "https://github.com/systemfsoftware/
|
|
9
|
+
"homepage": "https://github.com/systemfsoftware/stryker-js-effect",
|
|
10
|
+
"bugs": "https://github.com/systemfsoftware/stryker-js-effect/issues",
|
|
11
11
|
"description": "TypeScript checker plugin for Stryker — TS7 native",
|
|
12
12
|
"type": "module",
|
|
13
13
|
"files": [
|
|
@@ -15,49 +15,92 @@
|
|
|
15
15
|
"schema"
|
|
16
16
|
],
|
|
17
17
|
"exports": {
|
|
18
|
-
".":
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./dist/index.d.mts",
|
|
20
|
+
"default": "./dist/index.mjs"
|
|
21
|
+
},
|
|
19
22
|
"./package.json": "./package.json"
|
|
20
23
|
},
|
|
21
24
|
"license": "Apache-2.0",
|
|
22
25
|
"dependencies": {
|
|
26
|
+
"@opentelemetry/exporter-trace-otlp-http": "^0.208.0",
|
|
27
|
+
"@opentelemetry/sdk-node": "^0.208.0",
|
|
28
|
+
"@opentelemetry/sdk-trace-base": "^2.2.0",
|
|
29
|
+
"@systemfsoftware/effect-cell-types": "^8",
|
|
23
30
|
"effect": "4.0.0-rc.112",
|
|
24
31
|
"typescript": "^7",
|
|
25
|
-
"@systemfsoftware/
|
|
26
|
-
"@systemfsoftware/stryker-js": "^
|
|
32
|
+
"@systemfsoftware/stryker-js-instrumenter": "^7.0.0",
|
|
33
|
+
"@systemfsoftware/stryker-js-plugin-runtime": "^5.0.1",
|
|
34
|
+
"@systemfsoftware/stryker-js-plugin-interface": "^6.0.0"
|
|
27
35
|
},
|
|
28
36
|
"devDependencies": {
|
|
29
37
|
"@effect/platform-node": "4.0.0-rc.112",
|
|
30
38
|
"@effect/platform-node-shared": "4.0.0-rc.112",
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
39
|
+
"@effect/tsgo": "^0.45.0",
|
|
40
|
+
"@microsoft/api-extractor": "^7",
|
|
41
|
+
"@std/jsonc": "npm:@jsr/std__jsonc@^1",
|
|
42
|
+
"@systemfsoftware/all": "^2",
|
|
43
|
+
"@systemfsoftware/arethetypeswrong-cli": "^4",
|
|
44
|
+
"@systemfsoftware/effect-gherkin-spec": "^4",
|
|
45
|
+
"@systemfsoftware/effect-schema-law": "^2",
|
|
46
|
+
"@systemfsoftware/effect-schema-vite": "^2",
|
|
47
|
+
"@systemfsoftware/stryker-ignorer-effect-schema-declarations": "latest",
|
|
48
|
+
"@systemfsoftware/stryker-ignorer-in-source-vitest-block": "latest",
|
|
49
|
+
"@systemfsoftware/stryker-js": "latest",
|
|
50
|
+
"@systemfsoftware/stryker-js-typescript-checker": "latest",
|
|
51
|
+
"@systemfsoftware/stryker-js-vitest-runner": "latest",
|
|
52
|
+
"@systemfsoftware/stryker-test-contribution": "latest",
|
|
53
|
+
"@systemfsoftware/tsconfig": "^1",
|
|
34
54
|
"@types/node": "^24",
|
|
35
|
-
"oxlint": "^1
|
|
55
|
+
"oxlint": "^1",
|
|
36
56
|
"rimraf": "^6.1.3",
|
|
37
|
-
"tsdown": "^0.
|
|
57
|
+
"tsdown": "^0.23.0",
|
|
38
58
|
"vitest": "^4",
|
|
39
|
-
"@systemfsoftware/
|
|
40
|
-
"@systemfsoftware/
|
|
41
|
-
"@systemfsoftware/
|
|
42
|
-
"@systemfsoftware/all": "^2.0.2",
|
|
43
|
-
"@systemfsoftware/oxlint-config": "^0.1.0",
|
|
44
|
-
"@systemfsoftware/tsconfig": "^1.3.4",
|
|
45
|
-
"@systemfsoftware/vitest-config": "^0.1.0"
|
|
59
|
+
"@systemfsoftware/stryker-config": "^0.1.0",
|
|
60
|
+
"@systemfsoftware/vitest-config": "^0.1.0",
|
|
61
|
+
"@systemfsoftware/tsdown-config": "^0.1.0"
|
|
46
62
|
},
|
|
47
63
|
"inlinedDependencies": {
|
|
48
|
-
"@
|
|
64
|
+
"@effect/opentelemetry": "4.0.0-rc.112",
|
|
65
|
+
"@effect/platform-node": "4.0.0-rc.112",
|
|
66
|
+
"@effect/platform-node-shared": "4.0.0-rc.112",
|
|
67
|
+
"@jsr/std__jsonc": "1.0.2",
|
|
68
|
+
"@opentelemetry/api": "1.9.1",
|
|
69
|
+
"@opentelemetry/api-logs": "0.208.0",
|
|
70
|
+
"@opentelemetry/context-async-hooks": "2.2.0",
|
|
71
|
+
"@opentelemetry/core": [
|
|
72
|
+
"2.11.0",
|
|
73
|
+
"2.2.0"
|
|
74
|
+
],
|
|
75
|
+
"@opentelemetry/resources": [
|
|
76
|
+
"2.11.0",
|
|
77
|
+
"2.2.0"
|
|
78
|
+
],
|
|
79
|
+
"@opentelemetry/sdk-logs": "0.208.0",
|
|
80
|
+
"@opentelemetry/sdk-metrics": "2.2.0",
|
|
81
|
+
"@opentelemetry/sdk-trace-node": "2.2.0",
|
|
82
|
+
"@opentelemetry/semantic-conventions": "1.43.0",
|
|
83
|
+
"@systemfsoftware/effect-cell-types": "8.1.0",
|
|
84
|
+
"detect-libc": "2.1.2",
|
|
85
|
+
"effect": "4.0.0-rc.112",
|
|
86
|
+
"msgpackr": "2.1.0",
|
|
87
|
+
"msgpackr-extract": "3.0.4",
|
|
88
|
+
"node-gyp-build-optional-packages": "5.2.2",
|
|
89
|
+
"ws": "8.21.3"
|
|
49
90
|
},
|
|
50
91
|
"publishConfig": {
|
|
51
92
|
"provenance": true
|
|
52
93
|
},
|
|
53
94
|
"scripts": {
|
|
54
95
|
"clean": "rimraf dist",
|
|
55
|
-
"build": "tsdown
|
|
56
|
-
"typecheck": "tsc --noEmit --incremental",
|
|
96
|
+
"build": "tsdown",
|
|
97
|
+
"typecheck": "tsc --noEmit --incremental && tsc -p tsconfig.node.json --noEmit",
|
|
57
98
|
"attw": "attw --pack .",
|
|
58
99
|
"test": "vitest run",
|
|
100
|
+
"mutation": "stryker run",
|
|
59
101
|
"lint": "f=${OXLINT_FORMAT:-${AGENT:+agent}}; oxlint . --format=${f:-default}",
|
|
60
|
-
"api:check": "
|
|
61
|
-
"api:update": "api-extractor run --local"
|
|
102
|
+
"api:check": "api-extractor run",
|
|
103
|
+
"api:update": "api-extractor run --local",
|
|
104
|
+
"lint:tsgo": "effect-tsgo diagnostics --project tsconfig.json --format ${TSGO_FORMAT:-text}"
|
|
62
105
|
}
|
|
63
106
|
}
|