@contractspec/example.knowledge-canon 1.60.0 → 1.61.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.
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build prebuild
4
4
  $ contractspec-bun-build transpile
5
5
  [contractspec-bun-build] transpile target=bun root=src entries=8
6
- Bundled 8 modules in 21ms
6
+ Bundled 8 modules in 40ms
7
7
 
8
8
  ./agent.js 1.0 KB (entry point)
9
9
  ./index.js 5.98 KB (entry point)
@@ -15,7 +15,7 @@ Bundled 8 modules in 21ms
15
15
  ./tenant.js 0.85 KB (entry point)
16
16
 
17
17
  [contractspec-bun-build] transpile target=node root=src entries=8
18
- Bundled 8 modules in 12ms
18
+ Bundled 8 modules in 17ms
19
19
 
20
20
  ./agent.js 0.99 KB (entry point)
21
21
  ./index.js 5.96 KB (entry point)
@@ -27,8 +27,9 @@ Bundled 8 modules in 12ms
27
27
  ./tenant.js 0.84 KB (entry point)
28
28
 
29
29
  [contractspec-bun-build] transpile target=browser root=src entries=8
30
- Bundled 8 modules in 23ms
30
+ Bundled 8 modules in 26ms
31
31
 
32
+ $ contractspec-bun-build types
32
33
  ./agent.js 0.99 KB (entry point)
33
34
  ./index.js 5.96 KB (entry point)
34
35
  ./blueprint.js 0.81 KB (entry point)
@@ -38,4 +39,3 @@ Bundled 8 modules in 23ms
38
39
  ./source.sample.js 0.66 KB (entry point)
39
40
  ./tenant.js 0.84 KB (entry point)
40
41
 
41
- $ contractspec-bun-build types
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @contractspec/example.knowledge-canon
2
2
 
3
+ ## 1.61.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 374fd71: fix: publishing
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [374fd71]
12
+ - @contractspec/lib.contracts@1.61.0
13
+
3
14
  ## 1.60.0
4
15
 
5
16
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.knowledge-canon",
3
- "version": "1.60.0",
3
+ "version": "1.61.0",
4
4
  "description": "Knowledge example – Product Canon space (blueprint + tenant config + source sample + runtime helper).",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -8,63 +8,63 @@
8
8
  ".": {
9
9
  "types": "./dist/index.d.ts",
10
10
  "bun": "./dist/index.js",
11
- "node": "./dist/node/index.mjs",
11
+ "node": "./dist/node/index.js",
12
12
  "browser": "./dist/browser/index.js",
13
13
  "default": "./dist/index.js"
14
14
  },
15
15
  "./agent": {
16
16
  "types": "./dist/agent.d.ts",
17
17
  "bun": "./dist/agent.js",
18
- "node": "./dist/node/agent.mjs",
18
+ "node": "./dist/node/agent.js",
19
19
  "browser": "./dist/browser/agent.js",
20
20
  "default": "./dist/agent.js"
21
21
  },
22
22
  "./blueprint": {
23
23
  "types": "./dist/blueprint.d.ts",
24
24
  "bun": "./dist/blueprint.js",
25
- "node": "./dist/node/blueprint.mjs",
25
+ "node": "./dist/node/blueprint.js",
26
26
  "browser": "./dist/browser/blueprint.js",
27
27
  "default": "./dist/blueprint.js"
28
28
  },
29
29
  "./docs": {
30
30
  "types": "./dist/docs/index.d.ts",
31
31
  "bun": "./dist/docs/index.js",
32
- "node": "./dist/node/docs/index.mjs",
32
+ "node": "./dist/node/docs/index.js",
33
33
  "browser": "./dist/browser/docs/index.js",
34
34
  "default": "./dist/docs/index.js"
35
35
  },
36
36
  "./docs/index": {
37
37
  "types": "./dist/docs/index.d.ts",
38
38
  "bun": "./dist/docs/index.js",
39
- "node": "./dist/node/docs/index.mjs",
39
+ "node": "./dist/node/docs/index.js",
40
40
  "browser": "./dist/browser/docs/index.js",
41
41
  "default": "./dist/docs/index.js"
42
42
  },
43
43
  "./docs/knowledge-canon.docblock": {
44
44
  "types": "./dist/docs/knowledge-canon.docblock.d.ts",
45
45
  "bun": "./dist/docs/knowledge-canon.docblock.js",
46
- "node": "./dist/node/docs/knowledge-canon.docblock.mjs",
46
+ "node": "./dist/node/docs/knowledge-canon.docblock.js",
47
47
  "browser": "./dist/browser/docs/knowledge-canon.docblock.js",
48
48
  "default": "./dist/docs/knowledge-canon.docblock.js"
49
49
  },
50
50
  "./example": {
51
51
  "types": "./dist/example.d.ts",
52
52
  "bun": "./dist/example.js",
53
- "node": "./dist/node/example.mjs",
53
+ "node": "./dist/node/example.js",
54
54
  "browser": "./dist/browser/example.js",
55
55
  "default": "./dist/example.js"
56
56
  },
57
57
  "./source.sample": {
58
58
  "types": "./dist/source.sample.d.ts",
59
59
  "bun": "./dist/source.sample.js",
60
- "node": "./dist/node/source.sample.mjs",
60
+ "node": "./dist/node/source.sample.js",
61
61
  "browser": "./dist/browser/source.sample.js",
62
62
  "default": "./dist/source.sample.js"
63
63
  },
64
64
  "./tenant": {
65
65
  "types": "./dist/tenant.d.ts",
66
66
  "bun": "./dist/tenant.js",
67
- "node": "./dist/node/tenant.mjs",
67
+ "node": "./dist/node/tenant.js",
68
68
  "browser": "./dist/browser/tenant.js",
69
69
  "default": "./dist/tenant.js"
70
70
  }
@@ -85,12 +85,12 @@
85
85
  "typecheck": "tsc --noEmit"
86
86
  },
87
87
  "dependencies": {
88
- "@contractspec/lib.contracts": "1.60.0"
88
+ "@contractspec/lib.contracts": "1.61.0"
89
89
  },
90
90
  "devDependencies": {
91
- "@contractspec/tool.typescript": "1.60.0",
91
+ "@contractspec/tool.typescript": "1.61.0",
92
92
  "typescript": "^5.9.3",
93
- "@contractspec/tool.bun": "1.59.0"
93
+ "@contractspec/tool.bun": "1.60.0"
94
94
  },
95
95
  "publishConfig": {
96
96
  "access": "public",
@@ -98,63 +98,63 @@
98
98
  ".": {
99
99
  "types": "./dist/index.d.ts",
100
100
  "bun": "./dist/index.js",
101
- "node": "./dist/node/index.mjs",
101
+ "node": "./dist/node/index.js",
102
102
  "browser": "./dist/browser/index.js",
103
103
  "default": "./dist/index.js"
104
104
  },
105
105
  "./agent": {
106
106
  "types": "./dist/agent.d.ts",
107
107
  "bun": "./dist/agent.js",
108
- "node": "./dist/node/agent.mjs",
108
+ "node": "./dist/node/agent.js",
109
109
  "browser": "./dist/browser/agent.js",
110
110
  "default": "./dist/agent.js"
111
111
  },
112
112
  "./blueprint": {
113
113
  "types": "./dist/blueprint.d.ts",
114
114
  "bun": "./dist/blueprint.js",
115
- "node": "./dist/node/blueprint.mjs",
115
+ "node": "./dist/node/blueprint.js",
116
116
  "browser": "./dist/browser/blueprint.js",
117
117
  "default": "./dist/blueprint.js"
118
118
  },
119
119
  "./docs": {
120
120
  "types": "./dist/docs/index.d.ts",
121
121
  "bun": "./dist/docs/index.js",
122
- "node": "./dist/node/docs/index.mjs",
122
+ "node": "./dist/node/docs/index.js",
123
123
  "browser": "./dist/browser/docs/index.js",
124
124
  "default": "./dist/docs/index.js"
125
125
  },
126
126
  "./docs/index": {
127
127
  "types": "./dist/docs/index.d.ts",
128
128
  "bun": "./dist/docs/index.js",
129
- "node": "./dist/node/docs/index.mjs",
129
+ "node": "./dist/node/docs/index.js",
130
130
  "browser": "./dist/browser/docs/index.js",
131
131
  "default": "./dist/docs/index.js"
132
132
  },
133
133
  "./docs/knowledge-canon.docblock": {
134
134
  "types": "./dist/docs/knowledge-canon.docblock.d.ts",
135
135
  "bun": "./dist/docs/knowledge-canon.docblock.js",
136
- "node": "./dist/node/docs/knowledge-canon.docblock.mjs",
136
+ "node": "./dist/node/docs/knowledge-canon.docblock.js",
137
137
  "browser": "./dist/browser/docs/knowledge-canon.docblock.js",
138
138
  "default": "./dist/docs/knowledge-canon.docblock.js"
139
139
  },
140
140
  "./example": {
141
141
  "types": "./dist/example.d.ts",
142
142
  "bun": "./dist/example.js",
143
- "node": "./dist/node/example.mjs",
143
+ "node": "./dist/node/example.js",
144
144
  "browser": "./dist/browser/example.js",
145
145
  "default": "./dist/example.js"
146
146
  },
147
147
  "./source.sample": {
148
148
  "types": "./dist/source.sample.d.ts",
149
149
  "bun": "./dist/source.sample.js",
150
- "node": "./dist/node/source.sample.mjs",
150
+ "node": "./dist/node/source.sample.js",
151
151
  "browser": "./dist/browser/source.sample.js",
152
152
  "default": "./dist/source.sample.js"
153
153
  },
154
154
  "./tenant": {
155
155
  "types": "./dist/tenant.d.ts",
156
156
  "bun": "./dist/tenant.js",
157
- "node": "./dist/node/tenant.mjs",
157
+ "node": "./dist/node/tenant.js",
158
158
  "browser": "./dist/browser/tenant.js",
159
159
  "default": "./dist/tenant.js"
160
160
  }