aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/funbox/package.json
blob: 525e3b83de0ca1dc25d3340e9cacbd981605e420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  "name": "@monkeytype/funbox",
  "private": true,
  "scripts": {
    "dev": "rimraf ./dist && monkeytype-esbuild --watch",
    "build": "rimraf ./dist && npm run madge && monkeytype-esbuild",
    "madge": " madge --circular --extensions ts ./src",
    "ts-check": "tsc --noEmit",
    "lint": "eslint \"./**/*.ts\""
  },
  "devDependencies": {
    "@monkeytype/util": "workspace:*",
    "@monkeytype/esbuild": "workspace:*",
    "@monkeytype/eslint-config": "workspace:*",
    "@monkeytype/typescript-config": "workspace:*",
    "chokidar": "3.6.0",
    "eslint": "8.57.0",
    "madge": "8.0.0",
    "rimraf": "6.0.1",
    "typescript": "5.5.4",
    "vitest": "2.0.5"
  },
  "exports": {
    ".": {
      "types": "./src/index.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  }
}