effect-bdd 0.1.0 → 0.1.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.
Files changed (1) hide show
  1. package/package.json +18 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "effect-bdd",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "An Effect-native API for testing Gherkin feature files",
@@ -34,12 +34,22 @@
34
34
  "packageManager": "pnpm@10.16.1",
35
35
  "sideEffects": [],
36
36
  "bin": {
37
- "effect-bdd": "./src/bin.ts"
37
+ "effect-bdd": "./dist/bin.js"
38
38
  },
39
39
  "exports": {
40
40
  "./package.json": "./package.json",
41
- ".": "./src/index.ts",
42
- "./*": "./src/*.ts",
41
+ ".": {
42
+ "types": "./dist/index.d.ts",
43
+ "default": "./dist/index.js"
44
+ },
45
+ "./Bdd": {
46
+ "types": "./dist/Bdd.d.ts",
47
+ "default": "./dist/Bdd.js"
48
+ },
49
+ "./Errors": {
50
+ "types": "./dist/Errors.d.ts",
51
+ "default": "./dist/Errors.js"
52
+ },
43
53
  "./bin": null,
44
54
  "./main": null,
45
55
  "./internal/*": null,
@@ -55,19 +65,7 @@
55
65
  ],
56
66
  "publishConfig": {
57
67
  "access": "public",
58
- "provenance": true,
59
- "bin": {
60
- "effect-bdd": "./dist/bin.js"
61
- },
62
- "exports": {
63
- "./package.json": "./package.json",
64
- ".": "./dist/index.js",
65
- "./*": "./dist/*.js",
66
- "./bin": null,
67
- "./main": null,
68
- "./internal/*": null,
69
- "./*/index": null
70
- }
68
+ "provenance": true
71
69
  },
72
70
  "scripts": {
73
71
  "build": "tsc -p tsconfig.json && pnpm babel",
@@ -98,5 +96,7 @@
98
96
  "tstyche": "^7.2.1",
99
97
  "typescript": "^6.0.3",
100
98
  "vitest": "^4.1.8"
101
- }
99
+ },
100
+ "main": "./dist/index.js",
101
+ "types": "./dist/index.d.ts"
102
102
  }