ktx/package.json

58 lines
2.5 KiB
JSON
Raw Permalink Normal View History

2026-05-10 23:12:26 +02:00
{
2026-05-10 23:51:24 +02:00
"name": "ktx-workspace",
2026-05-10 23:12:26 +02:00
"version": "0.0.0-private",
2026-05-10 23:51:24 +02:00
"description": "Workspace root for ktx packages",
2026-05-10 23:12:26 +02:00
"private": true,
"type": "module",
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.20.0"
},
"scripts": {
"artifacts:build": "node scripts/package-artifacts.mjs build",
"artifacts:check": "node scripts/package-artifacts.mjs check",
"artifacts:live-db-smoke": "node scripts/installed-live-database-smoke.mjs",
"artifacts:verify": "node scripts/package-artifacts.mjs verify",
"artifacts:verify-demo": "node scripts/package-artifacts.mjs verify-demo",
"artifacts:verify-manifest": "node scripts/package-artifacts.mjs verify-manifest",
"build": "pnpm --filter './packages/*' run build",
"check": "node scripts/check-boundaries.mjs && node --test scripts/*.test.mjs && pnpm --filter './packages/*' run build && pnpm --filter './packages/*' run test",
2026-05-10 23:51:24 +02:00
"ktx": "node scripts/run-ktx.mjs",
2026-05-10 23:12:26 +02:00
"link:dev": "node scripts/link-dev-cli.mjs",
"native:rebuild": "pnpm -r rebuild better-sqlite3",
"setup:dev": "node scripts/setup-dev.mjs",
"release:published-smoke": "node scripts/published-package-smoke.mjs --require-config",
2026-05-11 11:47:30 +02:00
"release:local-embeddings-smoke": "node scripts/local-embeddings-runtime-smoke.mjs --require-opt-in",
"release:npm-publish": "node scripts/publish-public-npm-package.mjs",
2026-05-10 23:12:26 +02:00
"release:readiness": "node scripts/release-readiness.mjs",
"relationships:acquire-public-fixtures": "node scripts/acquire-public-benchmark-fixtures.mjs",
"relationships:rebuild-public-snapshots": "node scripts/build-benchmark-snapshot.mjs --rebuild-all",
"relationships:build-adventureworks-oltp": "node scripts/build-adventureworks-oltp-fixture.mjs",
"relationships:verify-orbit": "node scripts/relationship-orbit-verification.mjs",
2026-05-10 23:51:24 +02:00
"smoke": "pnpm run build && pnpm --filter @ktx/cli run smoke",
2026-05-10 23:12:26 +02:00
"test": "node --test scripts/*.test.mjs && pnpm --filter './packages/*' run test",
"test:slow": "pnpm --filter @ktx/context run test:slow && pnpm --filter @ktx/cli run test:slow",
2026-05-10 23:12:26 +02:00
"type-check": "pnpm --filter './packages/*' run type-check"
},
"devDependencies": {
"@types/node": "^24.3.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kaelio/ktx.git"
},
"bugs": {
"url": "https://github.com/kaelio/ktx/issues"
},
"homepage": "https://github.com/kaelio/ktx#readme"
}