UNPKG

mktemp

Version:

create temporary files and directories

87 lines 2.25 kB
{ "name": "mktemp", "description": "create temporary files and directories", "version": "2.0.3", "author": "sasa+1 <sasaplus1@gmail.com>", "contributors": [ "Michael Ficarra <github.public.email@michael.ficarra.me>", "rjz <rj@rjzaworski.com>" ], "devDependencies": { "@arethetypeswrong/cli": "0.18.2", "@biomejs/biome": "2.4.12", "@tsconfig/strictest": "2.0.8", "@types/node": "24.12.2", "@vitest/coverage-v8": "4.1.4", "fixpack": "4.0.0", "npm-run-all2": "8.0.4", "tsdown": "0.21.9", "typescript": "6.0.3", "vitest": "4.1.4" }, "devEngines": { "packageManager": { "name": "pnpm", "version": "10", "onFail": "error" } }, "engines": { "node": "20 || 22 || 24" }, "exports": { ".": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } }, "./*": { "import": { "types": "./dist/*.d.mts", "default": "./dist/*.mjs" }, "require": { "types": "./dist/*.d.cts", "default": "./dist/*.cjs" } } }, "files": [ "dist" ], "license": "MIT", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "readmeFilename": "README.md", "repository": { "type": "git", "url": "https://github.com/sasaplus1/mktemp.git" }, "sideEffects": false, "types": "./dist/index.d.cts", "scripts": { "build": "tsdown", "check": "run-p -l check:*", "check:attw": "run-s -l build && pnpm pack && run-p -l check:attw:* && rm mktemp-*.tgz", "check:attw:esm-only": "attw mktemp-*.tgz --profile esm-only", "check:attw:node16": "attw mktemp-*.tgz --profile node16", "check:attw:strict": "attw mktemp-*.tgz --profile strict", "fix": "run-p -l fix:*", "fix:biome": "biome check --write .", "fix:fixpack": "fixpack", "lint": "run-p -l lint:*", "lint:biome": "biome lint .", "lint:fixpack": "fixpack --dryRun", "lint:tsc": "tsc --noEmit", "test": "vitest run --coverage" } }