Path: blob/master/src/packages/sync-client/package.json
5574 views
{1"name": "@cocalc/sync-client",2"version": "0.1.4",3"description": "CoCalc Lightweight Nodejs Sync Client",4"main": "./dist/lib/index.js",5"exports": {6".": "./dist/lib/index.js",7"./*": "./dist/*.js",8"./lib/*": "./dist/lib/*.js"9},10"files": ["dist/**", "bin/**", "README.md", "package.json"],11"scripts": {12"preinstall": "npx only-allow pnpm",13"build": "../node_modules/.bin/tsc --build",14"clean": "rm -rf node_modules dist",15"depcheck": "pnpx depcheck"16},17"author": "SageMath, Inc.",18"keywords": ["cocalc", "jupyter"],19"license": "SEE LICENSE.md",20"dependencies": {21"@cocalc/api-client": "workspace:*",22"@cocalc/backend": "workspace:*",23"@cocalc/primus-multiplex": "^1.1.0",24"@cocalc/primus-responder": "^1.0.5",25"@cocalc/sync": "workspace:*",26"@cocalc/util": "workspace:*",27"cookie": "^1.0.0",28"debug": "^4.4.0",29"primus": "^8.0.9",30"ws": "^8.18.0"31},32"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/sync-client",33"repository": {34"type": "git",35"url": "https://github.com/sagemathinc/cocalc"36},37"devDependencies": {38"@types/cookie": "^0.6.0",39"@types/debug": "^4.1.12",40"@types/jest": "^30.0.0",41"@types/node": "^18.16.14",42"@types/primus": "^7.3.9"43}44}454647