UNPKG

@electric-sql/y-electric

Version:

YJS network provider for ElectricSQL

79 lines 1.93 kB
{ "name": "@electric-sql/y-electric", "version": "0.1.4", "description": "YJS network provider for ElectricSQL", "author": "ElectricSQL team and contributors.", "bugs": { "url": "https://github.com/electric-sql/electric/issues" }, "type": "module", "dependencies": { "lib0": "^0.2.65", "y-protocols": "^1.0.5", "yjs": "^13.6.6", "@electric-sql/client": "1.0.7" }, "devDependencies": { "@types/node": "^18.0.0", "@typescript-eslint/eslint-plugin": "^7.14.1", "@typescript-eslint/parser": "^7.14.1", "@vitest/coverage-istanbul": "2.1.4", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "prettier": "^3.3.2", "shx": "^0.3.4", "tsup": "^8.0.1", "typescript": "^5.5.2", "vitest": "^2.0.2" }, "keywords": [ "yjs", "electric-sql", "crdt", "collaboration", "real-time" ], "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "files": [ "dist", "src" ], "homepage": "https://electric-sql.com", "license": "Apache-2.0", "main": "./dist/cjs/index.cjs", "module": "./dist/index.legacy-esm.js", "types": "./dist/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/electric-sql/electric.git" }, "sideEffects": false, "typesVersions": { "*": { "*": [ "./dist/index.d.ts" ] } }, "scripts": { "build": "shx rm -rf dist && tsup && tsc -p tsconfig.build.json", "format": "eslint . --fix", "stylecheck": "eslint . --quiet", "test": "pnpm exec vitest", "coverage": "pnpm exec vitest --coverage", "typecheck": "tsc -p tsconfig.json" } }