Files
atalaya/package.json
dependabot[bot] 336bfdb12d chore(deps-dev): bump eslint in the npm-minor-patch group
Bumps the npm-minor-patch group with 1 update: [eslint](https://github.com/eslint/eslint).


Updates `eslint` from 10.2.0 to 10.2.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/compare/v10.2.0...v10.2.1)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 10.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-18 00:23:03 +00:00

49 lines
1.7 KiB
JSON

{
"name": "atalaya-worker",
"version": "1.0.0",
"private": true,
"type": "module",
"workspaces": [
"status-page"
],
"scripts": {
"dev": "wrangler dev",
"deploy": "npm run build --workspace=status-page && wrangler deploy",
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "oxlint && eslint",
"lint:fix": "oxlint --fix && eslint --fix",
"lint:strict": "oxlint --deny warnings && eslint --max-warnings=0",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"check": "npm run typecheck && npm run lint && npm run format:check",
"check:fix": "npm run lint:fix && npm run format",
"dev:pages": "npm run dev --workspace=status-page",
"build:pages": "npm run build --workspace=status-page",
"test:pages": "npm run test --workspace=status-page",
"check:pages": "npm run typecheck --workspace=status-page && npm run lint:pages && npm run format:pages:check",
"lint:pages": "npm run lint --workspace=status-page",
"lint:pages:fix": "npm run lint:fix --workspace=status-page",
"format:pages": "prettier --write \"src/**/*.ts\" \"status-page/src/**/*.ts\"",
"format:pages:check": "prettier --check \"src/**/*.ts\" \"status-page/src/**/*.ts\""
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260411.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.2",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^10.2.1",
"eslint-plugin-oxlint": "^1.59.0",
"oxlint": "^1.59.0",
"prettier": "^3.8.1",
"typescript": "^6.0.0",
"vitest": "^4.1.2",
"wrangler": "^4.78.0"
},
"dependencies": {
"js-yaml": "^4.1.1",
"node-addon-api": "^8.7.0",
"node-gyp": "^12.2.0"
}
}