Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/src/packages/sync-client/package.json
Views: 687
{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": [11"dist/**",12"bin/**",13"README.md",14"package.json"15],16"scripts": {17"preinstall": "npx only-allow pnpm",18"build": "../node_modules/.bin/tsc --build",19"clean": "rm -rf node_modules dist",20"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput"21},22"author": "SageMath, Inc.",23"keywords": [24"cocalc",25"jupyter"26],27"license": "SEE LICENSE.md",28"dependencies": {29"@cocalc/api-client": "workspace:*",30"@cocalc/backend": "workspace:*",31"@cocalc/primus-multiplex": "^1.1.0",32"@cocalc/primus-responder": "^1.0.5",33"@cocalc/sync": "workspace:*",34"@cocalc/util": "workspace:*",35"@types/primus": "^7.3.6",36"cookie": "^1.0.0",37"debug": "^4.3.2",38"primus": "^8.0.7",39"ws": "^8.18.0"40},41"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/sync-client",42"repository": {43"type": "git",44"url": "https://github.com/sagemathinc/cocalc"45},46"devDependencies": {47"@types/cookie": "^0.6.0",48"@types/node": "^18.16.14"49}50}515253