mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-23 22:33:57 +08:00
Bumps [madge](https://github.com/pahen/madge) from 6.1.0 to 8.0.0. - [Changelog](https://github.com/pahen/madge/blob/master/CHANGELOG.md) - [Commits](https://github.com/pahen/madge/compare/v6.1.0...v8.0.0) --- updated-dependencies: - dependency-name: madge dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jack <jack@monkeytype.com>
37 lines
939 B
JSON
37 lines
939 B
JSON
{
|
|
"name": "@monkeytype/contracts",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "rimraf ./dist && node esbuild.config.js --watch",
|
|
"build": "rimraf ./dist && npm run madge && node esbuild.config.js",
|
|
"madge": " madge --circular --extensions ts ./src",
|
|
"ts-check": "tsc --noEmit",
|
|
"lint": "eslint \"./**/*.ts\""
|
|
},
|
|
"dependencies": {
|
|
"@ts-rest/core": "3.45.2",
|
|
"zod": "3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@monkeytype/eslint-config": "workspace:*",
|
|
"@monkeytype/typescript-config": "workspace:*",
|
|
"chokidar": "3.6.0",
|
|
"esbuild": "0.23.0",
|
|
"eslint": "8.57.0",
|
|
"madge": "8.0.0",
|
|
"rimraf": "6.0.1",
|
|
"typescript": "5.5.4"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./*": {
|
|
"types": "./src/*.ts",
|
|
"import": "./dist/*.mjs",
|
|
"require": "./dist/*.cjs"
|
|
}
|
|
}
|
|
}
|