@chubbyts/chubbyts-packaging
Version:
63 lines (62 loc) • 1.51 kB
JSON
{
"name": "@chubbyts/chubbyts-packaging",
"type": "module",
"version": "4.0.1",
"description": "Packaging helper",
"keywords": [
"chubbyts",
"packaging",
"helper"
],
"author": "Dominik Zogg",
"license": "MIT",
"repository": "chubbyts/chubbyts-packaging",
"scripts": {
"build": "tsx build.ts",
"cs-fix": "prettier --write src tests eslint.config.mjs vitest.config.ts",
"cs": "prettier --check src tests eslint.config.mjs vitest.config.ts",
"infection": "stryker run",
"lint-fix": "eslint src tests eslint.config.mjs vitest.config.ts --fix",
"lint": "eslint src tests",
"prepare": "npm run build",
"test": "vitest"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
},
"files": [
"dist",
"tsconfig.json"
],
"exports": {
"./*": {
"types": "./*.d.ts",
"require": "./*.cjs",
"import": "./*.mjs",
"default": "./*.mjs"
}
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@chubbyts/chubbyts-eslint": "^4.0.7",
"@chubbyts/chubbyts-packaging": "^4.0.0",
"@stryker-mutator/core": "^9.0.1",
"@stryker-mutator/vitest-runner": "^9.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.1.0",
"@vitest/coverage-v8": "^3.2.4",
"fs-extra": "^11.3.0",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
}
}