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.1", "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.13.0", "assert-never": "1.4.0", "google-protobuf": "3.21.4", "immer": "10.1.1", "typesafe-event-emitter": "1.1.0", "@firestore-emulator/proto": "0.3.1" }, "devDependencies": { "@google-cloud/firestore": "7.11.0", "@types/google-protobuf": "3.15.12", "@types/node": "22.13.10", "grpc-tools": "1.13.0", "protoc-gen-ts": "0.8.7", "tsup": "8.4.0", "typescript": "5.8.2", "vitest": "3.0.8", "@shared/biome-config": "^0.0.17", "@shared/typescript-config": "^0.0.19" }, "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" } }