monkeytype/packages/tsup-config/package.json
2026-01-06 17:04:02 +01:00

27 lines
600 B
JSON

{
"name": "@monkeytype/tsup-config",
"private": true,
"exports": {
".": {
"types": "./src/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"dev": "tsup-node --watch",
"build": "tsup-node",
"ts-check": "tsc --noEmit",
"lint": "oxlint . --type-aware --type-check",
"lint-fast": "oxlint ."
},
"devDependencies": {
"@monkeytype/typescript-config": "workspace:*",
"oxlint": "1.38.0",
"oxlint-tsgolint": "0.10.1",
"typescript": "5.9.3"
},
"peerDependencies": {
"tsup": "8.4.0"
}
}