- Update root dev script to build packages before watching - Add --no-dts flag to package dev scripts to avoid DTS race conditions - Document monorepo development workflow in README Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
30 lines
593 B
JSON
30 lines
593 B
JSON
{
|
|
"name": "@multica/utils",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./*": {
|
|
"types": "./dist/*.d.ts",
|
|
"import": "./dist/*.js"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch --no-dts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@multica/types": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.0.0",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|