concurrently
Version:
Run commands concurrently
91 lines (90 loc) • 2.5 kB
JSON
{
"name": "concurrently",
"type": "module",
"version": "10.0.0",
"packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd",
"description": "Run commands concurrently",
"author": "Kimmo Brunfeldt",
"license": "MIT",
"funding": "https://github.com/open-cli-tools/concurrently?sponsor=1",
"repository": {
"type": "git",
"url": "https://github.com/open-cli-tools/concurrently.git"
},
"keywords": [
"bash",
"concurrent",
"parallel",
"concurrently",
"command",
"sh"
],
"exports": {
".": "./dist/lib/index.js",
"./package.json": "./package.json"
},
"types": "./dist/lib/index.d.ts",
"bin": {
"concurrently": "./dist/bin/index.js",
"conc": "./dist/bin/index.js"
},
"files": [
"!**/*.spec.d.ts",
"!**/*.spec.js",
"!**/__fixtures__",
"dist",
"dist/tsconfig.tsbuildinfo",
"docs"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc --build",
"postbuild": "chmod +x dist/bin/index.js",
"typecheck": "tsc --noEmit",
"format": "prettier --check '**/*.{json,y?(a)ml,md}'",
"lint": "eslint",
"prepublishOnly": "safe-publish-latest && pnpm run build",
"test": "vitest --project unit",
"test:smoke": "vitest run --project smoke",
"prepare": "husky"
},
"dependencies": {
"chalk": "5.6.2",
"rxjs": "7.8.2",
"shell-quote": "1.8.4",
"supports-color": "10.2.2",
"tree-kill": "1.2.2",
"yargs": "18.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@hirez_io/observer-spy": "^2.2.0",
"@types/node": "^20.19.41",
"@types/shell-quote": "^1.7.5",
"@types/yargs": "^17.0.35",
"@vitest/coverage-v8": "^4.1.6",
"@vitest/eslint-plugin": "^1.6.17",
"ctrlc-wrapper": "^0.0.5",
"eslint": "^10.4.0",
"eslint-config-flat-gitignore": "^2.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-lite": "^0.6.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"safe-publish-latest": "^2.0.0",
"string-argv": "^0.3.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.6"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{json,y?(a)ml,md}": "prettier --write"
}
}