monkeytype/packages/funbox/package.json
Jack 660668c530
chore: use oxfmt for formatting (@miodec) (#7187)
8 times faster formatting,
calls prettier internally for unsupported files

waiting on https://github.com/oxc-project/oxc/issues/16637
https://github.com/oxc-project/oxc/issues/16598
https://github.com/oxc-project/oxc/issues/16621

---------

Co-authored-by: Christian Fehmer <cfe@sexy-developer.com>
2025-12-15 16:53:50 +01:00

36 lines
938 B
JSON

{
"name": "@monkeytype/funbox",
"private": true,
"exports": {
".": {
"types": "./src/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"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"
},
"dependencies": {
"@monkeytype/schemas": "workspace:*",
"@monkeytype/util": "workspace:*"
},
"devDependencies": {
"@monkeytype/eslint-config": "workspace:*",
"@monkeytype/tsup-config": "workspace:*",
"@monkeytype/typescript-config": "workspace:*",
"eslint": "8.57.1",
"madge": "8.0.0",
"oxlint": "1.29.0",
"tsup": "8.4.0",
"typescript": "5.9.3",
"vitest": "4.0.8"
}
}