Jobber/package.json
Shaheer Sarfaraz 82e142a8a8
Auto-Registering Extractor System (#223)
* initial commit?

* Address PR feedback on extractor discovery and startup resilience

* Address latest PR review comments

* fix city resolution fallback when input parses empty

* address PR feedback on extractor registry and pipeline validation

* address copilot comments on manifests and registry startup

* fix extractor discovery export handling and env isolation in tests

* enforce duplicate manifest id failures in strict mode

* Fix remaining extractor registry and runtime review comments

* docs

* docs

* test all, logic remains in extractors

* Address PR review feedback on extractor registry and validation

* Revert extractor moduleResolution to bundler

* Enforce shared city filtering across all discovery sources

* Deduplicate extractor strict city post-filtering
2026-02-21 17:44:07 +00:00

32 lines
1.1 KiB
JSON

{
"name": "job-ops",
"private": true,
"workspaces": [
"orchestrator",
"docs-site",
"extractors/*",
"shared"
],
"scripts": {
"test:all": "npm --workspace orchestrator run test:run",
"check:types:shared": "npm --workspace shared run check:types",
"check:types": "npm --workspace shared run check:types && npm --workspace orchestrator run check:types",
"check:types:ukvisajobs": "npm --workspace ukvisajobs-extractor run check:types",
"check:all": "./orchestrator/node_modules/.bin/biome ci .",
"format:all": "./orchestrator/node_modules/.bin/biome format . --write",
"check:types:gradcracker": "npm --workspace gradcracker-extractor run check:types",
"docs:dev": "npm --workspace docs-site run start",
"docs:build": "npm --workspace docs-site run build",
"check:docs": "npm --workspace docs-site run build",
"docs:serve": "npm --workspace docs-site run serve",
"docs:version": "npm --workspace docs-site run docs:version",
"knip": "knip"
},
"devDependencies": {
"@types/node": "^25.2.3",
"knip": "^5.83.1",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
}
}