@mailwoman/phrase-grouper 9.0.0 → 9.2.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +45 -4
package/README.md CHANGED
@@ -69,7 +69,7 @@ kind-classifier → phrase-grouper → classifier (neural/rule-based) → ...
69
69
 
70
70
  - [`@mailwoman/core`](../core) — pipeline coordinator that consumes phrase groups
71
71
  - [`@mailwoman/kind-classifier`](../kind-classifier) — preceding stage
72
- - [The Knowledge Ladder](https://mailwoman.sister.software/articles/concepts/the-knowledge-ladder/) — design rationale
72
+ - [The Knowledge Ladder](https://mailwoman.ai/articles/concepts/the-knowledge-ladder/) — design rationale
73
73
  - [Staged Pipeline Contract](https://github.com/sister-software/mailwoman/blob/main/docs/engineering/reference/STAGES.mdx)
74
74
 
75
75
  ## License
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@mailwoman/phrase-grouper",
3
- "version": "9.0.0",
3
+ "version": "9.2.0",
4
4
  "description": "Stage 2.7 of the runtime pipeline — propose coherent input units (boundary discovery) with a structural kind hypothesis + confidence. Rule-based v1 (port of v1 section/sub-section logic); learned 1-2M-param span proposer reserved for v0.5.1.",
5
5
  "license": "AGPL-3.0-only OR LicenseRef-Commercial",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/sister-software/mailwoman.git",
9
- "directory": "phrase-grouper"
9
+ "directory": "packages/phrase-grouper"
10
10
  },
11
11
  "files": [
12
12
  "out/**/*.js",
@@ -20,14 +20,33 @@
20
20
  "!*.test.ts",
21
21
  "!*.test.tsx",
22
22
  "!**/*.test.ts",
23
- "!**/*.test.tsx"
23
+ "!**/*.test.tsx",
24
+ "!test/**"
24
25
  ],
25
26
  "type": "module",
27
+ "imports": {
28
+ "#index": {
29
+ "types": "./out/index.d.ts",
30
+ "default": "./out/index.js"
31
+ }
32
+ },
26
33
  "exports": {
27
34
  "./package.json": "./package.json",
28
35
  ".": {
29
36
  "types": "./out/index.d.ts",
30
37
  "default": "./out/index.js"
38
+ },
39
+ "./group": {
40
+ "types": "./out/group.d.ts",
41
+ "default": "./out/group.js"
42
+ },
43
+ "./rules": {
44
+ "types": "./out/rules.d.ts",
45
+ "default": "./out/rules.js"
46
+ },
47
+ "./types": {
48
+ "types": "./out/types.d.ts",
49
+ "default": "./out/types.js"
31
50
  }
32
51
  },
33
52
  "publishConfig": {
@@ -37,10 +56,32 @@
37
56
  ".": {
38
57
  "types": "./out/index.d.ts",
39
58
  "default": "./out/index.js"
59
+ },
60
+ "./group": {
61
+ "types": "./out/group.d.ts",
62
+ "default": "./out/group.js"
63
+ },
64
+ "./rules": {
65
+ "types": "./out/rules.d.ts",
66
+ "default": "./out/rules.js"
67
+ },
68
+ "./types": {
69
+ "types": "./out/types.d.ts",
70
+ "default": "./out/types.js"
71
+ }
72
+ },
73
+ "imports": {
74
+ "#index": {
75
+ "types": "./out/index.d.ts",
76
+ "default": "./out/index.js"
40
77
  }
41
78
  }
42
79
  },
43
80
  "dependencies": {
44
- "@mailwoman/core": "9.0.0"
81
+ "@mailwoman/core": "9.2.0"
82
+ },
83
+ "devDependencies": {
84
+ "@mailwoman/normalize": "9.2.0",
85
+ "@mailwoman/query-shape": "9.2.0"
45
86
  }
46
87
  }