monkeytype/packages/tsup-config/package.json
2025-12-19 09:56:37 +01:00

27 lines
599 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.34.0",
"oxlint-tsgolint": "0.9.2",
"typescript": "5.9.3"
},
"peerDependencies": {
"tsup": "8.4.0"
}
}