64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "@commander-js/extra-typings",
|
|
"version": "13.1.0",
|
|
"description": "Infer strong typings for commander options and action handlers",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"check": "npm run check:type && npm run check:lint && npm run check:format",
|
|
"check:format": "prettier --check .",
|
|
"check:lint": "eslint .",
|
|
"check:type": "tsd && tsc",
|
|
"fix": "npm run fix:lint && npm run fix:format",
|
|
"fix:format": "prettier --write .",
|
|
"fix:lint": "eslint --fix .",
|
|
"prepublishOnly": "npm run --silent test",
|
|
"test": "tsd && jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/commander-js/extra-typings.git"
|
|
},
|
|
"files": [
|
|
"esm.mjs",
|
|
"esm.d.mts",
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"type": "commonjs",
|
|
"exports": {
|
|
".": {
|
|
"require": "./index.js",
|
|
"import": "./esm.mjs"
|
|
}
|
|
},
|
|
"types": "index.d.ts",
|
|
"tsd": {
|
|
"directory": "tests"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/commander-js/extra-typings/issues"
|
|
},
|
|
"homepage": "https://github.com/commander-js/extra-typings#readme",
|
|
"peerDependencies": {
|
|
"commander": "~13.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.3.1",
|
|
"@types/node": "^22.10.1",
|
|
"commander": "~13.1.0",
|
|
"eslint": "^9.16.0",
|
|
"eslint-config-prettier": "^10.0.1",
|
|
"eslint-plugin-jest": "^28.9.0",
|
|
"globals": "^15.0.0",
|
|
"jest": "^29.3.1",
|
|
"prettier": "^3.2.5",
|
|
"ts-jest": "^29.0.5",
|
|
"tsd": "^0.31.2",
|
|
"typescript": "^5.3.3",
|
|
"typescript-eslint": "^8.11.0"
|
|
}
|
|
}
|