Files
atalaya/package.json
T

48 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",
"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",
"test:pages": "npm run test --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": "^5.20260715.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.4",
"@typescript-eslint/parser": "^8.62.1",
"eslint": "^10.6.0",
"eslint-plugin-oxlint": "^1.72.0",
"prettier": "^3.9.4",
"typescript": "^6.0.0",
"vitest": "^4.1.9",
"wrangler": "^4.107.0"
},
"dependencies": {
"js-yaml": "^4.3.0",
"node-addon-api": "^8.9.0",
"node-gyp": "^12.4.0"
}
}