Files
dotfiles/package.json
Ismo Vuorinen 46b9e3ebeb build(deps): upgrade devDependencies to latest
Bump @biomejs/biome ^2.4.4, @types/node ^25.3.2, bats ^1.13.0,
editorconfig-checker ^6.1.1, typescript ^5.9.3.
2026-02-28 10:39:50 +02:00

47 lines
1.5 KiB
JSON

{
"name": "ivuorinen-dotfiles",
"version": "1.0.0",
"description": "ivuorinen's dotfiles, this is for linting and formatters",
"directories": {
"doc": "docs"
},
"scripts": {
"lint:biome": "biome check .",
"fix:biome": "biome check --write .",
"format": "biome format --write .",
"lint:prettier": "prettier --check '**/*.{yml,yaml}'",
"fix:prettier": "prettier --write '**/*.{yml,yaml}'",
"format:yaml": "prettier --write '**/*.{yml,yaml}'",
"test": "bash test-all.sh",
"lint:ec": "ec -f gcc",
"lint:md-table": "git ls-files '*.md' | xargs markdown-table-formatter --check",
"fix:md-table": "git ls-files '*.md' | xargs markdown-table-formatter",
"lint": "yarn lint:biome && yarn lint:prettier && yarn lint:ec && yarn lint:md-table",
"fix": "yarn fix:biome && yarn fix:prettier && yarn fix:md-table"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivuorinen/dotfiles.git"
},
"keywords": [
"dotfiles",
"ivuorinen"
],
"author": "Ismo Vuorinen",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivuorinen/dotfiles/issues"
},
"homepage": "https://github.com/ivuorinen/dotfiles#readme",
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/node": "^25.3.2",
"bats": "^1.13.0",
"editorconfig-checker": "^6.1.1",
"markdown-table-formatter": "^1.7.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.12.0"
}