UNPKG

@firestore-emulator/server

Version:

This package is the implementation of the Firestore emulator. It is a Node.js

63 lines 1.57 kB
{ "name": "@firestore-emulator/server", "version": "0.3.15", "license": "MIT", "private": false, "publishConfig": { "access": "public" }, "main": "dist/index.js", "types": "dist/index.d.ts", "module": "dist/index.mjs", "files": [ "dist", "src" ], "repository": { "type": "git", "url": "https://github.com/YutaUra/firestore-emulator.git", "directory": "packages/server" }, "bugs": { "url": "https://github.com/YutaUra/firestore-emulator/issues/new" }, "keywords": [ "firestore", "firestore emulator", "google cloud firestore", "protocol buffers", "protobuf", "grpc" ], "author": { "name": "Yuta Ura", "url": "http://github.com/YutaUra" }, "dependencies": { "@grpc/grpc-js": "1.14.3", "assert-never": "1.4.0", "google-protobuf": "4.0.1", "immer": "11.1.3", "typesafe-event-emitter": "1.1.0", "@firestore-emulator/proto": "0.3.15" }, "devDependencies": { "@google-cloud/firestore": "8.0.0", "@types/google-protobuf": "3.15.12", "@types/node": "24.10.4", "grpc-tools": "1.13.1", "protoc-gen-ts": "0.8.7", "tsup": "8.5.1", "typescript": "5.9.3", "vitest": "4.0.16", "@shared/biome-config": "^0.0.18", "@shared/typescript-config": "^0.0.20" }, "scripts": { "build": "tsup ./src/ --sourcemap --clean --format esm,cjs --no-splitting && tsc --emitDeclarationOnly", "check": "biome check .", "check:fix": "biome check --write .", "type:check": "tsc --noEmit", "test": "vitest run" } }