fix-bad-declaration-output
Version:
Do you have bad declarations? Is it too hard to fix complex tooling? (Or do you not have the time to learn how?)
69 lines • 1.91 kB
JSON
{
"name": "fix-bad-declaration-output",
"version": "1.1.5",
"keywords": [],
"repository": {
"type": "git",
"url": "git@github.com:NullVoxPopuli/fix-bad-declaration-output.git"
},
"license": "MIT",
"author": "NullVoxPopuli",
"type": "module",
"exports": {
".": {
"types": "./declarations/index.d.ts",
"default": "./src/index.js"
}
},
"module": "./src/index.js",
"types": "./declarations/index.d.ts",
"bin": "src/bin.js",
"files": [
"src/**",
"declarations/**"
],
"dependencies": {
"@babel/parser": "^7.28.3",
"fs-extra": "^11.2.0",
"globby": "^14.0.0",
"jscodeshift": "^0.15.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.6",
"@nullvoxpopuli/eslint-configs": "^5.3.4",
"@tsconfig/node21": "^21.0.1",
"@tsconfig/strictest": "^2.0.2",
"@types/common-tags": "^1.8.4",
"@types/fs-extra": "^11.0.4",
"@types/jscodeshift": "^0.11.11",
"@types/node": "^20.11.15",
"common-tags": "^1.8.2",
"concurrently": "^9.2.0",
"eslint": "^9.33.0",
"prettier": "^3.2.4",
"publint": "^0.2.7",
"release-plan": "^0.16.0",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"engines": {
"node": "^20.11.0 || >= 21.2.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsc --declaration --declarationDir ./declarations --emitDeclarationOnly",
"format:fix": "prettier . --write",
"lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'",
"lint:fix": "pnpm lint:js:fix && pnpm format:fix",
"lint:format": "prettier . --check",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:package": "publint .",
"lint:published-types": "attw --pack --ignore-rules cjs-resolves-to-esm",
"lint:types": "tsc --noEmit",
"test": "vitest"
}
}