mktemp
Version:
create temporary files and directories
83 lines • 2.14 kB
JSON
{
"name": "mktemp",
"description": "create temporary files and directories",
"version": "2.0.4",
"author": "sasa+1 <sasaplus1@gmail.com>",
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@biomejs/biome": "2.5.9",
"@tsconfig/strictest": "2.0.8",
"@types/node": "24.13.3",
"@vitest/coverage-v8": "4.1.10",
"fixpack": "4.0.0",
"npm-run-all2": "9.0.3",
"tsdown": "0.22.14",
"typescript": "7.0.2",
"vitest": "4.1.10"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10",
"onFail": "error"
}
},
"engines": {
"node": "20 || 22 || 24 || 26"
},
"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"
}
}