mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-11 05:46:50 +08:00
28 lines
628 B
JSON
28 lines
628 B
JSON
{
|
|
"name": "@monkeytype/tsup-config",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "tsup-node --watch",
|
|
"build": "tsup-node",
|
|
"ts-check": "tsc --noEmit",
|
|
"eslint": "eslint \"./src/**/*.ts\"",
|
|
"oxlint": "oxlint .",
|
|
"lint": "npm run oxlint && npm run eslint"
|
|
},
|
|
"peerDependencies": {
|
|
"tsup": "8.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@monkeytype/typescript-config": "workspace:*",
|
|
"eslint": "8.57.1",
|
|
"oxlint": "0.16.7",
|
|
"typescript": "5.5.4"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
}
|
|
}
|