monkeytype/packages/funbox/package.json
Jack cac8835c77
chore: add oxlint (@miodec) (#6455)
Use oxlint for general linting to provide much quicker feedback. Keep
eslint for type-aware rules. Fully switch to oxlint once it supports
type-aware.
2025-04-16 17:18:50 +02:00

36 lines
921 B
JSON

{
"name": "@monkeytype/funbox",
"private": true,
"scripts": {
"dev": "tsup-node --watch",
"build": "npm run madge && tsup-node",
"test": "vitest run",
"madge": " madge --circular --extensions ts ./src",
"ts-check": "tsc --noEmit",
"eslint": "eslint \"./src/**/*.ts\"",
"oxlint": "oxlint .",
"lint": "npm run oxlint && npm run eslint"
},
"devDependencies": {
"@monkeytype/eslint-config": "workspace:*",
"@monkeytype/tsup-config": "workspace:*",
"@monkeytype/typescript-config": "workspace:*",
"chokidar": "3.6.0",
"eslint": "8.57.1",
"madge": "8.0.0",
"oxlint": "0.16.6",
"tsup": "8.4.0",
"typescript": "5.5.4",
"vitest": "2.1.9"
},
"dependencies": {
"@monkeytype/util": "workspace:*"
},
"exports": {
".": {
"types": "./src/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
}
}