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
25 lines
467 B
JSON
25 lines
467 B
JSON
{
|
|
"name": "@bytelyst/blob",
|
|
"version": "0.2.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/storage build",
|
|
"build": "tsc",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@bytelyst/storage": "workspace:*"
|
|
}
|
|
}
|