Files
core2026/tools/legacy-db-migration/package.json
T
Hide_D 16b320dabc chore(build): 빌드 도구와 Node LTS 버전 갱신
TypeScript 버전은 유지하고 pnpm, Turbo, Vite, Vitest, Prisma, tsdown을 갱신한다. 선언 파일 생성 호환성을 위해 rolldown-plugin-dts를 고정한다.
2026-09-23 02:09:22 +00:00

32 lines
1013 B
JSON

{
"name": "@sammo-ts/legacy-db-migration",
"private": true,
"version": "0.0.0",
"type": "module",
"bin": {
"sammo-migrate-legacy-db": "./dist/cli.mjs"
},
"scripts": {
"build": "tsdown src/cli.ts --no-config --format esm --out-dir dist --dts --sourcemap --target node22 --platform node",
"lint": "pnpm -w lint:target tools/legacy-db-migration",
"lint:fix": "pnpm -w lint:target:fix tools/legacy-db-migration",
"test": "vitest run --config vitest.config.ts",
"typecheck": "pnpm -w tsc7 -b tools/legacy-db-migration/tsconfig.json",
"migrate": "tsx src/cli.ts"
},
"dependencies": {
"@sammo-ts/common": "workspace:*",
"mariadb": "3.5.3",
"pg": "^8.16.3",
"sharp": "^0.35.0"
},
"devDependencies": {
"@types/node": "^26.2.0",
"@types/pg": "^8.21.0",
"tsdown": "^0.23.0",
"tsx": "^4.23.12",
"typescript": "6.0.3",
"vitest": "^5.0.1"
}
}