nuka-code
Version:
A package brought to you by the Nuka-Cola Corporation to zap away those pesky `cache`, `node_modules`, and other related files & directories.
86 lines • 1.99 kB
JSON
{
"name": "nuka-code",
"version": "0.1.11",
"description": "A package brought to you by the Nuka-Cola Corporation to zap away those pesky `cache`, `node_modules`, and other related files & directories.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json",
"pnpm-lock.yaml"
],
"bin": {
"nuka-code": "./dist/cli.js",
"nuke": "./dist/cli.js"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"nuke",
"nuka-cola",
"clean-up",
"cli",
"cache",
"package-manager",
"node_modules",
"turbo",
"rimraf",
"clean"
],
"author": "zrosenbauer",
"license": "MIT",
"dependencies": {
"chalk": "^5.4.1",
"consola": "^3.4.2",
"glob": "^11.0.2",
"ignore": "^7.0.5",
"remeda": "^2.22.5",
"rimraf": "^6.0.1",
"ts-pattern": "^5.7.1",
"yargs": "^18.0.0",
"yocto-spinner": "^0.2.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@joggr/tempo": "^0.13.4",
"@tsconfig/node24": "^24.0.1",
"@types/node": "^22.15.30",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "3.1.4",
"husky": "^9.1.7",
"tsup": "^8.5.0",
"tsx": "^4.19.4",
"turbo": "^2.5.4",
"type-fest": "^4.41.0",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.2"
},
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsup",
"dev": "tsup --watch",
"fix": "biome check --write",
"gen:docs": "tsx scripts/generate-docs.ts",
"check": "biome check",
"check:ci": "biome check --ci",
"cli": "(pnpm build > /dev/null 2>&1) && pnpm nuke"
}
}