|
| 1 | +{ |
| 2 | + "name": "@codemod-utils/threads", |
| 3 | + "version": "0.0.0", |
| 4 | + "private": true, |
| 5 | + "description": "Utilities for parallelization", |
| 6 | + "keywords": [ |
| 7 | + "codemod", |
| 8 | + "ember-codemod" |
| 9 | + ], |
| 10 | + "homepage": "https://codemod-utils.netlify.app/", |
| 11 | + "repository": { |
| 12 | + "type": "git", |
| 13 | + "url": "git@github.com:ijlee2/codemod-utils.git", |
| 14 | + "directory": "packages/threads" |
| 15 | + }, |
| 16 | + "license": "MIT", |
| 17 | + "author": "Isaac J. Lee", |
| 18 | + "type": "module", |
| 19 | + "exports": { |
| 20 | + ".": "./dist/index.js", |
| 21 | + "./*": { |
| 22 | + "types": "./dist/*.d.ts", |
| 23 | + "default": "./dist/*.js" |
| 24 | + } |
| 25 | + }, |
| 26 | + "main": "dist/index.js", |
| 27 | + "types": "dist/index.d.ts", |
| 28 | + "typesVersions": { |
| 29 | + "*": { |
| 30 | + "*": [ |
| 31 | + "dist/*" |
| 32 | + ] |
| 33 | + } |
| 34 | + }, |
| 35 | + "files": [ |
| 36 | + "dist" |
| 37 | + ], |
| 38 | + "scripts": { |
| 39 | + "build": "sh build.sh --production", |
| 40 | + "format": "prettier . --cache --write", |
| 41 | + "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"", |
| 42 | + "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" && pnpm format", |
| 43 | + "lint:format": "prettier . --cache --check", |
| 44 | + "lint:js": "eslint . --cache", |
| 45 | + "lint:js:fix": "eslint . --fix", |
| 46 | + "lint:types": "tsc --noEmit", |
| 47 | + "test": "sh build.sh --test && mt dist-for-testing --quiet" |
| 48 | + }, |
| 49 | + "devDependencies": { |
| 50 | + "@codemod-utils/tests": "workspace:*", |
| 51 | + "@shared-configs/eslint-config-node": "workspace:*", |
| 52 | + "@shared-configs/prettier": "workspace:*", |
| 53 | + "@shared-configs/typescript": "workspace:*", |
| 54 | + "@sondr3/minitest": "^0.1.2", |
| 55 | + "@types/node": "^22.19.11", |
| 56 | + "concurrently": "^9.2.1", |
| 57 | + "eslint": "^9.39.2", |
| 58 | + "prettier": "^3.8.1", |
| 59 | + "typescript": "^5.9.3" |
| 60 | + }, |
| 61 | + "engines": { |
| 62 | + "node": "22.* || >= 24" |
| 63 | + } |
| 64 | +} |
0 commit comments