v1.1.0: repo polish, CI fixes, version alignment, dead artifact cleanup

Root package: renamed to imhotep-monorepo, fixed broken scripts (test:unit/integration/e2e),
removed inappropriate root deps, fixed build order, updated clean script

CI: branch trigger main->master, npm ci->npm install, GitHub cache URL->Gitea

Docs: replaced scaffolded root README with real project README, added package READMEs
for imhotep/imhotep-playwright/imhotep-dsl/imhotep-core, added RELEASE.md checklist

Version: all 14 packages and root aligned to 1.1.0, CHANGELOG test count fixed (1125)

Metadata: 14 repository URLs github->gitea, 13 package descriptions added,
imhotep-cli exports field added, SECURITY.md updated for Gitea+disclosure email

Quality: noEmitOnError:true in 13 tsconfigs, collapsed duplicate interfaces in public.ts,
clippedBy test->test.skip, fixed broken dynamic import in imhotep index.test.ts,
694 generated src artifacts cleaned, V8 logs removed, .gitignore updated
This commit is contained in:
John Dvorak
2026-05-21 10:10:11 -07:00
parent 92deb689cd
commit dd64e1e34a
43 changed files with 846 additions and 126 deletions
+7 -14
View File
@@ -1,21 +1,20 @@
{
"name": "imhotep",
"version": "1.0.0",
"name": "imhotep-monorepo",
"version": "1.1.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace=imhotep-geometry && npm run build --workspace=imhotep-cdp && npm run build --workspace=imhotep-core && npm run build --workspace=imhotep-dsl && npm run build --workspace=imhotep-extractor && npm run build --workspace=imhotep-reporter && npm run build --workspace=imhotep-solver && npm run build --workspace=imhotep-state && npm run build --workspace=imhotep-topology && npm run build --workspace=imhotep-playwright && npm run build --workspace=imhotep-fixtures && npm run build --workspace=imhotep-bench && npm run build --workspace=imhotep-cli && npm run build --workspace=imhotep",
"build": "npm run build --workspace=imhotep-geometry && npm run build --workspace=imhotep-core && npm run build --workspace=imhotep-cdp && npm run build --workspace=imhotep-dsl && npm run build --workspace=imhotep-extractor && npm run build --workspace=imhotep-reporter && npm run build --workspace=imhotep-solver && npm run build --workspace=imhotep-state && npm run build --workspace=imhotep-topology && npm run build --workspace=imhotep-playwright && npm run build --workspace=imhotep-fixtures && npm run build --workspace=imhotep-bench && npm run build --workspace=imhotep-cli && npm run build --workspace=imhotep",
"typecheck": "for pkg in packages/*/; do npx tsc -p ${pkg}tsconfig.json --noEmit || exit 1; done",
"test": "npm run test --workspaces",
"test:unit": "npm run test:unit --workspaces",
"test:integration": "npm run test:integration --workspaces",
"test:e2e": "npm run test:e2e --workspaces",
"test:integration": "npm run test:integration -w imhotep-playwright",
"test:e2e": "npm run test:e2e -w imhotep-fixtures",
"test:external-smoke": "node scripts/external-smoke.mjs",
"lint": "eslint packages/*/src/**/*.ts",
"clean": "rm -rf packages/*/dist packages/*/*.tsbuildinfo dist"
"clean": "rm -rf packages/*/dist packages/*/*.tsbuildinfo dist && find packages -path '*/src/*.js' -delete && find packages -path '*/src/*.d.ts' -delete && find packages -path '*/src/*.map' -delete"
},
"devDependencies": {
"@stryker-mutator/api": "^9.6.1",
@@ -27,11 +26,5 @@
"fast-check": "^4.7.0",
"playwright": "^1.59.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@playwright/test": "^1.59.1",
"imhotep": "^1.0.0",
"imhotep-dsl": "^1.0.0",
"imhotep-playwright": "^1.0.0"
}
}
}