diff options
Diffstat (limited to 'packages/funbox/package.json')
-rw-r--r-- | packages/funbox/package.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/funbox/package.json b/packages/funbox/package.json new file mode 100644 index 000000000..525e3b83d --- /dev/null +++ b/packages/funbox/package.json @@ -0,0 +1,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" + } + } +} |