ask-molty/package.json
2026-05-06 04:51:18 +01:00

29 lines
1.3 KiB
JSON

{
"name": "ask-molty",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "npm run typecheck",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run export:test && npm run smoke",
"deploy": "wrangler deploy --config wrangler.toml",
"dev": "wrangler dev --config wrangler.toml",
"export": "tsx scripts/export-workspace.ts",
"export:test": "ASK_MOLTY_OUT_DIR=dist/test tsx scripts/export-workspace.ts",
"format": "oxfmt --write src scripts .github package.json package-lock.json tsconfig.base.json tsconfig.worker.json tsconfig.scripts.json .oxlintrc.json .oxfmtrc.json wrangler.toml README.md",
"format:check": "oxfmt --check src scripts .github package.json package-lock.json tsconfig.base.json tsconfig.worker.json tsconfig.scripts.json .oxlintrc.json .oxfmtrc.json wrangler.toml README.md",
"lint": "oxlint src scripts",
"smoke": "tsx scripts/smoke.ts",
"typecheck": "tsgo -p tsconfig.worker.json --noEmit && tsgo -p tsconfig.scripts.json --noEmit"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20260506.1",
"@types/node": "24.10.1",
"@typescript/native-preview": "7.0.0-dev.20260505.1",
"oxfmt": "0.48.0",
"oxlint": "1.63.0",
"tsx": "4.21.0",
"wrangler": "4.87.0"
}
}