terminal-nerds/configs

View on GitHub
packages/tsup/package.json

Summary

Maintainability
Test Coverage
{
"$schema": "https://json.schemastore.org/package",
"type": "module",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"name": "@terminal-nerds/tsup-config",
"version": "0.8.1",
"description": "Terminal Nerds extendable configuration for tsup.",
"keywords": [
"config",
"tool",
"tsup"
],
"license": "MIT",
"homepage": "https://github.com/terminal-nerds/configs/tree/main/packages/tsup",
"repository": {
"type": "git",
"url": "https://github.com/terminal-nerds/configs.git",
"directory": "packages/tsup"
},
"bugs": "https://github.com/terminal-nerds/configs/issues",
"engines": {
"node": ">=20"
},
"files": [
"/dist"
],
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
}
},
"scripts": {
"build": "tsup",
"clean": "pnpm run \"/^clean:.*/\" ",
"clean:build": "del \"./dist\"",
"clean:cache": "del \"./.turbo\" \"./node_modules/.cache\"",
"dev": "tsup --watch",
"eslint": "DEBUG=\"eslint:cli-engine\" eslint . --cache --cache-location \"./node_modules/.cache/eslint\" --ext .ts ",
"fix": "pnpm run \"/^fix:.*/\" ",
"fix:format": "pnpm prettier --write",
"fix:js": "pnpm eslint --fix",
"fix:md": "pnpm markdownlint --fix",
"fix:pkg": "syncpack format ; syncpack fix-mismatches",
"lint": "pnpm run \"/^lint:.*/\" ",
"lint:deps": "depcheck",
"lint:format": "pnpm prettier --check",
"lint:js": "pnpm eslint",
"lint:md": "pnpm markdownlint",
"lint:types": "tsc --noEmit",
"markdownlint": "markdownlint . --config \"../../.markdownlint.json\" --dot --ignore-path \"../../.gitignore\"",
"prepack": "clean-package --config \"../../.clean-packagerc.cjs\"",
"prettier": "prettier --cache --cache-location=\"./node_modules/.cache/prettier\" --ignore-path=\"../../.gitignore\" --log-level=log \"./\""
},
"peerDependencies": {
"tsup": "8.0.1"
},
"devDependencies": {
"@terminal-nerds/typescript-config": "workspace:*",
"tsup": "8.0.1",
"typescript": "5.3.3"
}
}