monkeytype/packages/util/package.json

30 lines
744 B
JSON

{
"name": "@monkeytype/util",
"scripts": {
"dev": "tsup-node --watch",
"build": "npm run madge && tsup-node",
"test": "vitest run",
"madge": " madge --circular --extensions ts ./src",
"ts-check": "tsc --noEmit",
"lint": "eslint \"./**/*.ts\""
},
"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",
"tsup": "8.4.0",
"typescript": "5.5.4",
"vitest": "2.1.9",
"zod": "3.23.8"
},
"exports": {
"./*": {
"types": "./src/*.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.js"
}
}
}