{ "version": "1.0.0", "description": "Exercism exercises in Typescript.", "private": true, "repository": { "type": "git", "url": "https://github.com/exercism/typescript" }, "type": "module", "engines": { "node": "^18.16.0 || >=20.0.0" }, "devDependencies": { "@exercism/babel-preset-typescript": "^0.4.0", "@exercism/eslint-config-typescript": "^0.6.0", "@types/jest": "^29.5.12", "@types/node": "^20.12", "babel-jest": "^29.5.0", "core-js": "^3.36", "eslint": "^8.42.0", "jest": "^29.7.0", "typescript": "^5.4.3" }, "scripts": { "test": "yarn lint:types && jest --no-cache", "lint": "yarn lint:types && yarn lint:ci", "lint:types": "yarn tsc --noEmit -p .", "lint:ci": "eslint . --ext .tsx,.ts" }, "packageManager": "yarn@3.6.4" }