learning_ai_common_plat/packages/testing/package.json
saravanakumardb1 6ba86e0bf4 fix: replace corepack pnpm with pnpm in pretest/predev scripts
Node 25 removed corepack as a built-in. Replace all 'corepack pnpm'
invocations with direct 'pnpm' calls since pnpm is installed globally.

Affected: platform-service, tracker-web, blob, testing, LLM dashboard
2026-03-19 19:57:16 -07:00

35 lines
666 B
JSON

{
"name": "@bytelyst/testing",
"version": "0.1.0",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"pretest": "pnpm --dir ../.. --filter @bytelyst/fastify-core build",
"build": "tsc",
"test": "vitest run"
},
"devDependencies": {
"@bytelyst/fastify-core": "workspace:*",
"fastify": "^5.2.1"
},
"peerDependencies": {
"vitest": ">=3.0.0",
"fastify": ">=5.0.0"
},
"peerDependenciesMeta": {
"fastify": {
"optional": true
}
}
}