lurqrun 0.0.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.
@@ -0,0 +1,370 @@
1
+ {
2
+ "id": "e242d794-8dd1-4fa8-afb4-5e05625fbeed",
3
+ "prevId": "00000000-0000-0000-0000-000000000000",
4
+ "version": "7",
5
+ "dialect": "postgresql",
6
+ "tables": {
7
+ "public.packages": {
8
+ "name": "packages",
9
+ "schema": "",
10
+ "columns": {
11
+ "id": {
12
+ "name": "id",
13
+ "type": "serial",
14
+ "primaryKey": true,
15
+ "notNull": true
16
+ },
17
+ "name": {
18
+ "name": "name",
19
+ "type": "text",
20
+ "primaryKey": false,
21
+ "notNull": true
22
+ },
23
+ "ecosystem": {
24
+ "name": "ecosystem",
25
+ "type": "text",
26
+ "primaryKey": false,
27
+ "notNull": true,
28
+ "default": "'npm'"
29
+ },
30
+ "category": {
31
+ "name": "category",
32
+ "type": "text",
33
+ "primaryKey": false,
34
+ "notNull": false
35
+ },
36
+ "description": {
37
+ "name": "description",
38
+ "type": "text",
39
+ "primaryKey": false,
40
+ "notNull": false
41
+ },
42
+ "summary": {
43
+ "name": "summary",
44
+ "type": "text",
45
+ "primaryKey": false,
46
+ "notNull": false
47
+ },
48
+ "repo_url": {
49
+ "name": "repo_url",
50
+ "type": "text",
51
+ "primaryKey": false,
52
+ "notNull": false
53
+ },
54
+ "homepage": {
55
+ "name": "homepage",
56
+ "type": "text",
57
+ "primaryKey": false,
58
+ "notNull": false
59
+ },
60
+ "latest_version": {
61
+ "name": "latest_version",
62
+ "type": "text",
63
+ "primaryKey": false,
64
+ "notNull": false
65
+ },
66
+ "license": {
67
+ "name": "license",
68
+ "type": "text",
69
+ "primaryKey": false,
70
+ "notNull": false
71
+ },
72
+ "deprecated": {
73
+ "name": "deprecated",
74
+ "type": "boolean",
75
+ "primaryKey": false,
76
+ "notNull": true,
77
+ "default": false
78
+ },
79
+ "archived": {
80
+ "name": "archived",
81
+ "type": "boolean",
82
+ "primaryKey": false,
83
+ "notNull": true,
84
+ "default": false
85
+ },
86
+ "first_published_at": {
87
+ "name": "first_published_at",
88
+ "type": "timestamp with time zone",
89
+ "primaryKey": false,
90
+ "notNull": false
91
+ },
92
+ "last_release_at": {
93
+ "name": "last_release_at",
94
+ "type": "timestamp with time zone",
95
+ "primaryKey": false,
96
+ "notNull": false
97
+ },
98
+ "weekly_downloads": {
99
+ "name": "weekly_downloads",
100
+ "type": "bigint",
101
+ "primaryKey": false,
102
+ "notNull": false
103
+ },
104
+ "download_growth_90d": {
105
+ "name": "download_growth_90d",
106
+ "type": "real",
107
+ "primaryKey": false,
108
+ "notNull": false
109
+ },
110
+ "dependents_count": {
111
+ "name": "dependents_count",
112
+ "type": "integer",
113
+ "primaryKey": false,
114
+ "notNull": false
115
+ },
116
+ "stars": {
117
+ "name": "stars",
118
+ "type": "integer",
119
+ "primaryKey": false,
120
+ "notNull": false
121
+ },
122
+ "open_issues": {
123
+ "name": "open_issues",
124
+ "type": "integer",
125
+ "primaryKey": false,
126
+ "notNull": false
127
+ },
128
+ "closed_issues": {
129
+ "name": "closed_issues",
130
+ "type": "integer",
131
+ "primaryKey": false,
132
+ "notNull": false
133
+ },
134
+ "scorecard": {
135
+ "name": "scorecard",
136
+ "type": "real",
137
+ "primaryKey": false,
138
+ "notNull": false
139
+ },
140
+ "bundle_min_gzip_kb": {
141
+ "name": "bundle_min_gzip_kb",
142
+ "type": "real",
143
+ "primaryKey": false,
144
+ "notNull": false
145
+ },
146
+ "advisories": {
147
+ "name": "advisories",
148
+ "type": "jsonb",
149
+ "primaryKey": false,
150
+ "notNull": false
151
+ },
152
+ "health_score": {
153
+ "name": "health_score",
154
+ "type": "integer",
155
+ "primaryKey": false,
156
+ "notNull": false
157
+ },
158
+ "confidence": {
159
+ "name": "confidence",
160
+ "type": "text",
161
+ "primaryKey": false,
162
+ "notNull": false
163
+ },
164
+ "score_breakdown": {
165
+ "name": "score_breakdown",
166
+ "type": "jsonb",
167
+ "primaryKey": false,
168
+ "notNull": false
169
+ },
170
+ "usage_guide": {
171
+ "name": "usage_guide",
172
+ "type": "jsonb",
173
+ "primaryKey": false,
174
+ "notNull": false
175
+ },
176
+ "embedding": {
177
+ "name": "embedding",
178
+ "type": "vector(1536)",
179
+ "primaryKey": false,
180
+ "notNull": false
181
+ },
182
+ "data_as_of": {
183
+ "name": "data_as_of",
184
+ "type": "timestamp with time zone",
185
+ "primaryKey": false,
186
+ "notNull": false
187
+ },
188
+ "created_at": {
189
+ "name": "created_at",
190
+ "type": "timestamp with time zone",
191
+ "primaryKey": false,
192
+ "notNull": true,
193
+ "default": "now()"
194
+ },
195
+ "updated_at": {
196
+ "name": "updated_at",
197
+ "type": "timestamp with time zone",
198
+ "primaryKey": false,
199
+ "notNull": true,
200
+ "default": "now()"
201
+ }
202
+ },
203
+ "indexes": {
204
+ "packages_category_idx": {
205
+ "name": "packages_category_idx",
206
+ "columns": [
207
+ {
208
+ "expression": "category",
209
+ "isExpression": false,
210
+ "asc": true,
211
+ "nulls": "last"
212
+ }
213
+ ],
214
+ "isUnique": false,
215
+ "concurrently": false,
216
+ "method": "btree",
217
+ "with": {}
218
+ },
219
+ "packages_health_score_idx": {
220
+ "name": "packages_health_score_idx",
221
+ "columns": [
222
+ {
223
+ "expression": "health_score",
224
+ "isExpression": false,
225
+ "asc": true,
226
+ "nulls": "last"
227
+ }
228
+ ],
229
+ "isUnique": false,
230
+ "concurrently": false,
231
+ "method": "btree",
232
+ "with": {}
233
+ },
234
+ "packages_embedding_idx": {
235
+ "name": "packages_embedding_idx",
236
+ "columns": [
237
+ {
238
+ "expression": "embedding",
239
+ "isExpression": false,
240
+ "asc": true,
241
+ "nulls": "last",
242
+ "opclass": "vector_cosine_ops"
243
+ }
244
+ ],
245
+ "isUnique": false,
246
+ "concurrently": false,
247
+ "method": "hnsw",
248
+ "with": {}
249
+ }
250
+ },
251
+ "foreignKeys": {},
252
+ "compositePrimaryKeys": {},
253
+ "uniqueConstraints": {
254
+ "packages_name_unique": {
255
+ "name": "packages_name_unique",
256
+ "nullsNotDistinct": false,
257
+ "columns": [
258
+ "name"
259
+ ]
260
+ }
261
+ },
262
+ "policies": {},
263
+ "checkConstraints": {},
264
+ "isRLSEnabled": false
265
+ },
266
+ "public.seed_packages": {
267
+ "name": "seed_packages",
268
+ "schema": "",
269
+ "columns": {
270
+ "name": {
271
+ "name": "name",
272
+ "type": "text",
273
+ "primaryKey": true,
274
+ "notNull": true
275
+ },
276
+ "category": {
277
+ "name": "category",
278
+ "type": "text",
279
+ "primaryKey": false,
280
+ "notNull": false
281
+ },
282
+ "added_at": {
283
+ "name": "added_at",
284
+ "type": "timestamp with time zone",
285
+ "primaryKey": false,
286
+ "notNull": true,
287
+ "default": "now()"
288
+ }
289
+ },
290
+ "indexes": {},
291
+ "foreignKeys": {},
292
+ "compositePrimaryKeys": {},
293
+ "uniqueConstraints": {},
294
+ "policies": {},
295
+ "checkConstraints": {},
296
+ "isRLSEnabled": false
297
+ },
298
+ "public.sync_runs": {
299
+ "name": "sync_runs",
300
+ "schema": "",
301
+ "columns": {
302
+ "id": {
303
+ "name": "id",
304
+ "type": "serial",
305
+ "primaryKey": true,
306
+ "notNull": true
307
+ },
308
+ "started_at": {
309
+ "name": "started_at",
310
+ "type": "timestamp with time zone",
311
+ "primaryKey": false,
312
+ "notNull": true,
313
+ "default": "now()"
314
+ },
315
+ "finished_at": {
316
+ "name": "finished_at",
317
+ "type": "timestamp with time zone",
318
+ "primaryKey": false,
319
+ "notNull": false
320
+ },
321
+ "packages_seen": {
322
+ "name": "packages_seen",
323
+ "type": "integer",
324
+ "primaryKey": false,
325
+ "notNull": true,
326
+ "default": 0
327
+ },
328
+ "packages_updated": {
329
+ "name": "packages_updated",
330
+ "type": "integer",
331
+ "primaryKey": false,
332
+ "notNull": true,
333
+ "default": 0
334
+ },
335
+ "errors": {
336
+ "name": "errors",
337
+ "type": "jsonb",
338
+ "primaryKey": false,
339
+ "notNull": true,
340
+ "default": "'[]'::jsonb"
341
+ },
342
+ "status": {
343
+ "name": "status",
344
+ "type": "text",
345
+ "primaryKey": false,
346
+ "notNull": true,
347
+ "default": "'running'"
348
+ }
349
+ },
350
+ "indexes": {},
351
+ "foreignKeys": {},
352
+ "compositePrimaryKeys": {},
353
+ "uniqueConstraints": {},
354
+ "policies": {},
355
+ "checkConstraints": {},
356
+ "isRLSEnabled": false
357
+ }
358
+ },
359
+ "enums": {},
360
+ "schemas": {},
361
+ "sequences": {},
362
+ "roles": {},
363
+ "policies": {},
364
+ "views": {},
365
+ "_meta": {
366
+ "columns": {},
367
+ "schemas": {},
368
+ "tables": {}
369
+ }
370
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "version": "7",
3
+ "dialect": "postgresql",
4
+ "entries": [
5
+ {
6
+ "idx": 0,
7
+ "version": "7",
8
+ "when": 1781995269888,
9
+ "tag": "0000_confused_fabian_cortez",
10
+ "breakpoints": true
11
+ }
12
+ ]
13
+ }
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "lurqrun",
3
+ "version": "0.0.1",
4
+ "description": "A continuously-updated, evidence-scored index of JS/TS frameworks and libraries, exposed as an MCP server, CLI, and agent skill — so AI coding assistants get fresh, objective dependency recommendations.",
5
+ "type": "module",
6
+ "license": "Apache-2.0",
7
+ "author": "jadenryu",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/jadenryu/lurq.git"
11
+ },
12
+ "homepage": "https://github.com/jadenryu/lurq#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/jadenryu/lurq/issues"
15
+ },
16
+ "keywords": [
17
+ "mcp",
18
+ "model-context-protocol",
19
+ "npm",
20
+ "dependencies",
21
+ "recommendations",
22
+ "claude-code",
23
+ "ai-coding"
24
+ ],
25
+ "bin": {
26
+ "lurq": "dist/bin/lurq.js"
27
+ },
28
+ "workspaces": [
29
+ "apps/*"
30
+ ],
31
+ "files": [
32
+ "dist",
33
+ "src/data/seed.json",
34
+ "templates",
35
+ "drizzle",
36
+ "README.md"
37
+ ],
38
+ "engines": {
39
+ "node": ">=20"
40
+ },
41
+ "scripts": {
42
+ "build": "tsup",
43
+ "dev": "tsx src/bin/lurq.ts",
44
+ "lurq": "tsx src/bin/lurq.ts",
45
+ "start": "node dist/bin/lurq.js",
46
+ "test": "vitest run",
47
+ "test:watch": "vitest",
48
+ "typecheck": "tsc --noEmit",
49
+ "lint": "eslint .",
50
+ "format": "prettier --write .",
51
+ "format:check": "prettier --check .",
52
+ "db:generate": "drizzle-kit generate",
53
+ "db:migrate": "tsx src/bin/lurq.ts db migrate",
54
+ "prepublishOnly": "npm run build"
55
+ },
56
+ "dependencies": {
57
+ "@modelcontextprotocol/sdk": "^1.29.0",
58
+ "commander": "^12.1.0",
59
+ "dotenv": "^16.4.5",
60
+ "drizzle-orm": "^0.45.2",
61
+ "postgres": "^3.4.9",
62
+ "zod": "^3.23.8"
63
+ },
64
+ "devDependencies": {
65
+ "@eslint/js": "^9.9.0",
66
+ "@types/node": "^22.5.0",
67
+ "drizzle-kit": "^0.31.10",
68
+ "eslint": "^9.9.0",
69
+ "prettier": "^3.3.3",
70
+ "tsup": "^8.2.4",
71
+ "tsx": "^4.19.0",
72
+ "typescript": "^5.5.4",
73
+ "typescript-eslint": "^8.3.0",
74
+ "vitest": "^2.0.5"
75
+ }
76
+ }