@codraoss/core 0.9.12 → 0.9.13
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/dist/index.js +6 -6
- package/package.json +5 -78
package/dist/index.js
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
InMemoryKV,
|
|
3
|
-
InMemoryOrchestrator,
|
|
4
|
-
InMemoryQueue,
|
|
5
|
-
InMemorySessionStore
|
|
6
|
-
} from "./chunk-GDX2ZEBA.js";
|
|
7
1
|
import {
|
|
8
2
|
dedupeFindings
|
|
9
3
|
} from "./chunk-4XEMXRNG.js";
|
|
@@ -24,6 +18,12 @@ import {
|
|
|
24
18
|
parseVerifyResponse,
|
|
25
19
|
renderDiffSnippet
|
|
26
20
|
} from "./chunk-KTDBDKL5.js";
|
|
21
|
+
import {
|
|
22
|
+
InMemoryKV,
|
|
23
|
+
InMemoryOrchestrator,
|
|
24
|
+
InMemoryQueue,
|
|
25
|
+
InMemorySessionStore
|
|
26
|
+
} from "./chunk-GDX2ZEBA.js";
|
|
27
27
|
import {
|
|
28
28
|
ruleHitsToComments,
|
|
29
29
|
scanFileForRuleHits
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codraoss/core",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.13",
|
|
4
4
|
"description": "The Codra review engine: pure, transport- and platform-agnostic code review logic behind ports.",
|
|
5
5
|
"author": "Devarshi Shimpi",
|
|
6
6
|
"license": "AGPL-3.0-only",
|
|
@@ -91,80 +91,7 @@
|
|
|
91
91
|
"README.md"
|
|
92
92
|
],
|
|
93
93
|
"publishConfig": {
|
|
94
|
-
"access": "public"
|
|
95
|
-
"main": "./dist/index.js",
|
|
96
|
-
"module": "./dist/index.js",
|
|
97
|
-
"types": "./dist/index.d.ts",
|
|
98
|
-
"exports": {
|
|
99
|
-
".": {
|
|
100
|
-
"types": "./dist/index.d.ts",
|
|
101
|
-
"import": "./dist/index.js"
|
|
102
|
-
},
|
|
103
|
-
"./ports": {
|
|
104
|
-
"types": "./dist/ports/index.d.ts",
|
|
105
|
-
"import": "./dist/ports/index.js"
|
|
106
|
-
},
|
|
107
|
-
"./logger": {
|
|
108
|
-
"types": "./dist/logger.d.ts",
|
|
109
|
-
"import": "./dist/logger.js"
|
|
110
|
-
},
|
|
111
|
-
"./formatter": {
|
|
112
|
-
"types": "./dist/formatter.d.ts",
|
|
113
|
-
"import": "./dist/formatter.js"
|
|
114
|
-
},
|
|
115
|
-
"./diff": {
|
|
116
|
-
"types": "./dist/diff/index.d.ts",
|
|
117
|
-
"import": "./dist/diff/index.js"
|
|
118
|
-
},
|
|
119
|
-
"./model-output": {
|
|
120
|
-
"types": "./dist/model-output/index.d.ts",
|
|
121
|
-
"import": "./dist/model-output/index.js"
|
|
122
|
-
},
|
|
123
|
-
"./rules/detect": {
|
|
124
|
-
"types": "./dist/rules/detect.d.ts",
|
|
125
|
-
"import": "./dist/rules/detect.js"
|
|
126
|
-
},
|
|
127
|
-
"./rules/table": {
|
|
128
|
-
"types": "./dist/rules/table.d.ts",
|
|
129
|
-
"import": "./dist/rules/table.js"
|
|
130
|
-
},
|
|
131
|
-
"./claim-checks": {
|
|
132
|
-
"types": "./dist/claim-checks.d.ts",
|
|
133
|
-
"import": "./dist/claim-checks.js"
|
|
134
|
-
},
|
|
135
|
-
"./verify": {
|
|
136
|
-
"types": "./dist/verify.d.ts",
|
|
137
|
-
"import": "./dist/verify.js"
|
|
138
|
-
},
|
|
139
|
-
"./fingerprint": {
|
|
140
|
-
"types": "./dist/fingerprint.d.ts",
|
|
141
|
-
"import": "./dist/fingerprint.js"
|
|
142
|
-
},
|
|
143
|
-
"./timeout": {
|
|
144
|
-
"types": "./dist/timeout.d.ts",
|
|
145
|
-
"import": "./dist/timeout.js"
|
|
146
|
-
},
|
|
147
|
-
"./token-tracker": {
|
|
148
|
-
"types": "./dist/token-tracker.d.ts",
|
|
149
|
-
"import": "./dist/token-tracker.js"
|
|
150
|
-
},
|
|
151
|
-
"./prompts/file-review": {
|
|
152
|
-
"types": "./dist/prompts/file-review.d.ts",
|
|
153
|
-
"import": "./dist/prompts/file-review.js"
|
|
154
|
-
},
|
|
155
|
-
"./prompts/languages": {
|
|
156
|
-
"types": "./dist/prompts/languages.d.ts",
|
|
157
|
-
"import": "./dist/prompts/languages.js"
|
|
158
|
-
},
|
|
159
|
-
"./prompts/summary": {
|
|
160
|
-
"types": "./dist/prompts/summary.d.ts",
|
|
161
|
-
"import": "./dist/prompts/summary.js"
|
|
162
|
-
},
|
|
163
|
-
"./prompts/verify": {
|
|
164
|
-
"types": "./dist/prompts/verify.d.ts",
|
|
165
|
-
"import": "./dist/prompts/verify.js"
|
|
166
|
-
}
|
|
167
|
-
}
|
|
94
|
+
"access": "public"
|
|
168
95
|
},
|
|
169
96
|
"scripts": {
|
|
170
97
|
"build": "tsup",
|
|
@@ -174,14 +101,14 @@
|
|
|
174
101
|
"postpack": "node ../../scripts/swap-publish-exports.mjs restore"
|
|
175
102
|
},
|
|
176
103
|
"dependencies": {
|
|
177
|
-
"@codraoss/schema": "
|
|
104
|
+
"@codraoss/schema": "workspace:*",
|
|
178
105
|
"jsonrepair": "^3.15.0",
|
|
179
|
-
"picomatch": "^4.0.
|
|
106
|
+
"picomatch": "^4.0.7",
|
|
180
107
|
"zod": "^4.3.6"
|
|
181
108
|
},
|
|
182
109
|
"devDependencies": {
|
|
183
110
|
"@types/picomatch": "^4.0.3",
|
|
184
|
-
"tsup": "^8.0.
|
|
111
|
+
"tsup": "^8.0.2"
|
|
185
112
|
},
|
|
186
113
|
"main": "./dist/index.js",
|
|
187
114
|
"module": "./dist/index.js",
|