Files
setup-beam/package.json
T
dependabot[bot] 7364c3d019 Bump markdownlint-cli from 0.49.0 to 0.49.1
Bumps [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli) from 0.49.0 to 0.49.1.
- [Release notes](https://github.com/igorshubovych/markdownlint-cli/releases)
- [Commits](https://github.com/igorshubovych/markdownlint-cli/compare/v0.49.0...v0.49.1)

---
updated-dependencies:
- dependency-name: markdownlint-cli
  dependency-version: 0.49.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-07-20 11:02:46 +00:00

42 lines
1.3 KiB
JSON

{
"name": "setup-beam",
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"build": "ncc build src/setup-beam.js --no-cache",
"format": "prettier src/**/*.js test/**/*.js *.mjs --write",
"eslint": "eslint src/**/*.js test/**/*.js *.mjs",
"licenses": "yarn licenses generate-disclaimer > 3RD_PARTY_LICENSES",
"markdownlint": "markdownlint *.md ./github/**/*.md",
"shellcheck": "shellcheck .github/workflows/*.sh",
"test": "node --test --test-reporter=spec",
"yamllint": "eslint .github/workflows/**.yml .github/*.yml .*.yml *.yml",
"clean-dist": "rm -rf ./dist",
"lint": "npm run markdownlint && npm run shellcheck && npm run yamllint && npm run eslint",
"build-dist": "npm run clean-dist && npm install && npm run build && npm run format && npm run lint"
},
"dependencies": {
"@actions/core": "3.0.0",
"@actions/exec": "3.0.0",
"@actions/tool-cache": "4.0.0",
"csv-parse": "7.0.1",
"semver": "7.7.4",
"smol-toml": "1.7.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@vercel/ncc": "0.44.1",
"eslint": "10.6.0",
"eslint-plugin-yml": "3.5.0",
"globals": "17.7.0",
"markdownlint-cli": "0.49.1",
"prettier": "3.9.4",
"shellcheck": "4.1.0",
"yarn": "1.22.22"
},
"engines": {
"node": ">=24"
}
}