cameras/package.json
Michael Mainguy daaecb7452 Fix the published package: compile the CLI, bundle onvif (0.1.1)
Installing 0.1.0 failed twice, both my mistakes.

- Node refuses to strip types under node_modules, so shipping .ts for the
  CLI could never work from an installed package. tsconfig.cli.json now
  compiles those modules to dist/ as ES modules, and the helper scripts
  are plain .mjs.
- serverExternalPackages made Turbopack emit require("onvif-<hash>"),
  a name that resolves nowhere, because onvif comes from a git URL.
  Bundling it fixes that; checked from an installed tarball, where
  /api/discover answered 200 and a real camera's info and snapshot came
  back through the packaged server.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-09-19 19:21:53 -05:00

79 lines
2.0 KiB
JSON

{
"name": "onvif-dashboard",
"version": "0.1.1",
"description": "Web dashboard for ONVIF cameras (Hikvision, Annke): discovery, live video over WebRTC, motion recording and settings, all on your own network.",
"keywords": [
"onvif",
"hikvision",
"annke",
"ip-camera",
"cctv",
"webrtc",
"nvr",
"surveillance",
"dashboard"
],
"license": "MIT",
"author": "Michael Mainguy",
"repository": {
"type": "git",
"url": "git+https://git.dasfad.com/mmainguy/cameras.git"
},
"engines": {
"node": ">=24.0.0"
},
"files": [
".next/standalone",
".next/static",
"public",
"cli",
"dist",
"scripts/create-admin.mjs",
"scripts/install-mediamtx.mjs",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "next dev",
"build": "next build && npm run build:cli && node scripts/bundle-standalone.mjs",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"admin:create": "node scripts/create-admin.mjs",
"video:install": "node scripts/install-mediamtx.mjs",
"build:cli": "tsc --project tsconfig.cli.json",
"prepack": "npm run build"
},
"dependencies": {
"@tanstack/react-query": "^5.103.1",
"lucide-react": "^1.47.0",
"next": "16.3.5",
"onvif": "github:mikemainguy/onvif#e8c340fdf97cf4a42da23ce810b4ecdd8c93dd4b",
"react": "19.2.8",
"react-dom": "19.2.8",
"server-only": "^0.0.1",
"zod": "^4.6.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.2",
"@testing-library/react": "^16.3.3",
"@types/node": "^24.13.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/coverage-v8": "^5.0.1",
"eslint": "^9",
"eslint-config-next": "16.3.5",
"jsdom": "^29.1.1",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^5.0.1"
},
"bin": {
"onvif-dashboard": "cli/onvif-dashboard.mjs"
}
}