mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-31 12:28:50 +08:00
27 lines
599 B
JSON
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"
|
|
}
|
|
}
|