@systemfsoftware/stryker-plugins 0.1.0 → 0.3.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.
@@ -1,5 +1,4 @@
1
1
  import { PluginKind } from "@stryker-mutator/api/plugin";
2
-
3
2
  //#region src/effect-schema-ignorer/index.d.ts
4
3
  declare const strykerPlugins: import("@stryker-mutator/api/plugin").ValuePlugin<PluginKind.Ignore>[];
5
4
  //#endregion
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@systemfsoftware/stryker-plugins",
3
3
  "license": "MIT",
4
- "version": "0.1.0",
4
+ "version": "0.3.0",
5
5
  "author": "Ryan Lee <drdgvhbh@gmail.com>",
6
6
  "repository": {
7
7
  "type": "git",
@@ -28,31 +28,38 @@
28
28
  "dist"
29
29
  ],
30
30
  "exports": {
31
- ".": "./dist/index.mjs",
32
- "./effect-schema-ignorer": "./dist/effect-schema-ignorer.mjs",
31
+ ".": {
32
+ "types": "./dist/stryker-plugins.d.ts",
33
+ "default": "./dist/index.mjs"
34
+ },
35
+ "./effect-schema-ignorer": {
36
+ "types": "./dist/effect-schema-ignorer.d.ts",
37
+ "default": "./dist/effect-schema-ignorer.mjs"
38
+ },
33
39
  "./package.json": "./package.json"
34
40
  },
35
41
  "dependencies": {
36
- "effect": "^3.21.2"
42
+ "effect": "^3.22.0"
37
43
  },
38
44
  "devDependencies": {
39
45
  "@babel/types": "^7.29.0",
40
- "@effect/vitest": "0.29.0",
46
+ "@effect/vitest": "0.30.0",
47
+ "@microsoft/api-extractor": "^7.58.7",
41
48
  "@stryker-mutator/api": "^9.6.1",
42
- "@stryker-mutator/core": "^9.6.1",
43
- "@stryker-mutator/typescript-checker": "^9.6.1",
44
49
  "@stryker-mutator/vitest-runner": "^9.6.1",
45
50
  "@types/node": "^24",
46
51
  "@vitest/coverage-v8": "^4",
47
52
  "rimraf": "^6.1.3",
48
- "tsdown": "^0.22.3",
53
+ "tsdown": "^0.22.9",
49
54
  "tstyche": "^7.1.0",
50
- "typescript": "^6.0.3",
51
55
  "vitest": "^4",
52
- "@systemfsoftware/effect-schema-law": "^0.1.0",
53
- "@systemfsoftware/tsconfig": "^1.0.0",
54
- "@systemfsoftware/vitest-config": "^0.1.0",
55
- "@systemfsoftware/oxlint-config": "^0.1.0"
56
+ "@systemfsoftware/arethetypeswrong-cli": "^1.0.0",
57
+ "@systemfsoftware/oxlint-config": "^0.1.0",
58
+ "@systemfsoftware/stryker-js-core": "^1.0.0",
59
+ "@systemfsoftware/stryker-js-typescript-checker": "^1.0.0",
60
+ "@systemfsoftware/effect-schema-law": "^0.3.0",
61
+ "@systemfsoftware/tsconfig": "^1.1.0",
62
+ "@systemfsoftware/vitest-config": "^0.1.0"
56
63
  },
57
64
  "peerDependencies": {
58
65
  "@stryker-mutator/api": "^9.6.1",
@@ -61,12 +68,15 @@
61
68
  "scripts": {
62
69
  "build": "tsdown",
63
70
  "clean": "rimraf dist",
64
- "typecheck": "tsgo --noEmit --incremental",
71
+ "typecheck": "tsc --noEmit --incremental",
65
72
  "test": "vitest run",
66
73
  "test:run": "vitest run --coverage",
67
74
  "test:types": "tstyche",
68
75
  "mutation": "stryker run --incremental",
69
76
  "mutation:full": "stryker run",
70
- "lint": "oxlint . ${AGENT:+--format=unix --quiet}"
77
+ "lint": "oxlint . ${AGENT:+--format=unix --quiet}",
78
+ "attw": "attw --pack .",
79
+ "api:check": "api-extractor run && api-extractor run --config api-extractor.effect-schema-ignorer.json",
80
+ "api:update": "api-extractor run --local && api-extractor run --local --config api-extractor.effect-schema-ignorer.json"
71
81
  }
72
82
  }
File without changes