TypeScript 버전은 유지하고 pnpm, Turbo, Vite, Vitest, Prisma, tsdown을 갱신한다. 선언 파일 생성 호환성을 위해 rolldown-plugin-dts를 고정한다.
34 lines
984 B
JSON
34 lines
984 B
JSON
{
|
|
"name": "@sammo-ts/logic",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./*": "./dist/src/*"
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/logic",
|
|
"dev": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/logic --watch",
|
|
"lint": "pnpm -w lint:target packages/logic",
|
|
"lint:fix": "pnpm -w lint:target:fix packages/logic",
|
|
"test": "vitest run --config vitest.config.ts",
|
|
"typecheck": "pnpm -w tsc7 -b packages/logic/tsconfig.json"
|
|
},
|
|
"dependencies": {
|
|
"@sammo-ts/common": "workspace:*",
|
|
"es-toolkit": "^1.43.0",
|
|
"immer": "^11.1.3",
|
|
"zod": "^4.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"tsdown": "^0.23.0",
|
|
"vitest": "^5.0.1"
|
|
}
|
|
}
|