UNPKG

@pakk/core

Version:

The core library of pakk, that can manage your package.json for library development.

106 lines 3.58 kB
{ "name": "@pakk/core", "description": "The core library of pakk, that can manage your package.json for library development.", "version": "0.14.1", "license": "MIT", "private": false, "archetype": { "platform": "node", "language": "ts", "kind": "lib" }, "keywords": [ "javascript", "js", "managed-by-autotool", "ts", "typescript" ], "author": { "email": "alexaegis@pm.me", "name": "Alex Aegis", "url": "https://github.com/AlexAegis" }, "homepage": "https://github.com/AlexAegis/js-tooling", "repository": { "url": "git+https://github.com/AlexAegis/js-tooling", "type": "git", "directory": "packages/pakk-core" }, "bugs": { "email": "alexaegis@pm.me", "url": "https://github.com/AlexAegis/js-tooling/issues" }, "type": "module", "config": { "engine-strict": false }, "publishConfig": { "access": "public" }, "engines": { "node": ">=20", "pnpm": ">=9" }, "exports": { ".": { "types": "./index.d.ts", "import": "./index.js", "require": "./index.cjs", "default": "./index.js" }, "./package.json": "./package.json", "./readme": "./readme.md", "./unicorn-magic": { "types": "./unicorn-magic.js", "import": "./unicorn-magic.js", "require": "./unicorn-magic.cjs", "default": "./unicorn-magic.js" } }, "dependencies": { "@alexaegis/common": "^0.11.0", "@alexaegis/fs": "^0.11.0", "@alexaegis/logging": "^0.11.0", "@alexaegis/workspace-tools": "^0.11.0", "@types/node": "^22.14.1", "globby": "^14.1.0", "prettier": "^3.5.3", "rollup": "^4.40.0", "ts-node": "^10.9.2", "typescript": "^5.8.3", "vite": "^6.3.2" }, "devDependencies": { "@types/node": "^22.14.1", "@types/yargs": "^17.0.33", "publint": "^0.3.12", "typescript-eslint": "^8.30.1", "vite": "^6.3.2", "vitest": "^3.1.1" }, "scripts": { "lint:depcheck": "turbo run lint:depcheck_ --concurrency 16 --filter @pakk/core", "lint:depcheck_": "depcheck", "lint:es": "turbo run lint:es_ --concurrency 16 --filter @pakk/core", "lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .", "lint:format": "turbo run lint:format_ --concurrency 16 --filter @pakk/core", "lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .", "lint:md": "turbo run lint:md_ --concurrency 16 --filter @pakk/core", "lint:md_": "remark --frail --no-stdout --silently-ignore .", "lint:tsc": "turbo run lint:tsc_ --concurrency 16 --filter @pakk/core", "lint:tsc_": "tsc --noEmit", "publint": "BUILD_REASON='publish' turbo run publint_ --concurrency 16 --filter @pakk/core", "publint_": "publint dist", "test": "turbo run test_ --concurrency 16 --filter @pakk/core", "test_": "vitest --passWithNoTests --coverage --run", "test:watch": "vitest --passWithNoTests --coverage", "all": "BUILD_REASON='publish' turbo run all_ --concurrency 16 --filter @pakk/core", "build": "turbo run build-lib_ --concurrency 16 --filter @pakk/core", "build-lib_": "vite build", "format": "turbo run format_ --concurrency 16 --filter @pakk/core", "format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .", "imnotworking:pakk:asd": "echo This line should make a warning during build", "prebuild_": "vite build --config vite-prebuild.config.ts" } }