monkeytype/packages/shared-types/package.json

31 lines
709 B
JSON

{
"name": "@monkeytype/shared-types",
"private": true,
"scripts": {
"dev": "rimraf ./dist && tsc --watch --preserveWatchOutput",
"build": "rimraf ./dist && tsc",
"ts-check": "tsc --noEmit",
"lint": "eslint \"./**/*.ts\""
},
"dependencies": {
"@monkeytype/contracts": "workspace:*"
},
"devDependencies": {
"@monkeytype/eslint-config": "workspace:*",
"@monkeytype/typescript-config": "workspace:*",
"rimraf": "6.0.1",
"typescript": "5.5.4",
"eslint": "8.57.0"
},
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"default": "./dist/*.js",
"types": "./dist/*.d.ts"
}
}
}