dd64e1e34a
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
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "imhotep-core",
|
|
"version": "1.1.0",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"description": "Foundation types, AST/IR contracts, diagnostics, and geometry world schema",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitea.com/anomalyco/imhotep.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"test": "tsc -p tsconfig.test.json && node --test dist-test/**/*.test.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./scene-target": {
|
|
"types": "./dist/scene-target.d.ts",
|
|
"default": "./dist/scene-target.js"
|
|
},
|
|
"./property-contracts": {
|
|
"types": "./dist/property-contracts.d.ts",
|
|
"default": "./dist/property-contracts.js"
|
|
},
|
|
"./property-results": {
|
|
"types": "./dist/property-results.d.ts",
|
|
"default": "./dist/property-results.js"
|
|
},
|
|
"./world": {
|
|
"types": "./dist/world.d.ts",
|
|
"default": "./dist/world.js"
|
|
}
|
|
}
|
|
}
|