Files
br-os/package.json
2025-12-01 16:23:11 -06:00

67 lines
1.8 KiB
JSON

{
"name": "blackroad-os",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"bin": {
"br-orchestrate": "dist/src/cli.js"
},
"scripts": {
"prepare": "npm run build",
"lint": "pnpm run lint:ts && pnpm run lint:yaml && pnpm run format:check",
"lint:ts": "eslint . --ext .ts,.tsx,.js,.cjs,.mjs",
"lint:yaml": "yaml-lint orchestra.yml",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"build": "tsc",
"postbuild": "tsx scripts/postbuild.ts",
"br-orchestrate": "tsx src/cli.ts",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"spawn-agent": "node scripts/spawn-agent.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@octokit/rest": "^21.1.1",
"bullmq": "^5.64.1",
"express": "^5.1.0",
"fastify": "^5.6.2",
"ioredis": "^5.8.2",
"js-yaml": "^4.1.1",
"node-cron": "^4.2.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/express": "^5.0.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.1",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^8.56.0",
"jsdom": "^27.2.0",
"prettier": "^3.1.0",
"supertest": "^7.1.4",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.13",
"yaml-lint": "^1.2.4",
"zod": "^3.22.4"
}
}