Path: blob/master/src/packages/sync-client/package.json
1503 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"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",16"depcheck": "pnpx depcheck"17},18"author": "SageMath, Inc.",19"keywords": ["cocalc", "jupyter"],20"license": "SEE LICENSE.md",21"dependencies": {22"@cocalc/api-client": "workspace:*",23"@cocalc/backend": "workspace:*",24"@cocalc/primus-multiplex": "^1.1.0",25"@cocalc/primus-responder": "^1.0.5",26"@cocalc/sync": "workspace:*",27"@cocalc/util": "workspace:*",28"cookie": "^1.0.0",29"debug": "^4.4.0",30"primus": "^8.0.9",31"ws": "^8.18.0"32},33"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/sync-client",34"repository": {35"type": "git",36"url": "https://github.com/sagemathinc/cocalc"37},38"devDependencies": {39"@types/cookie": "^0.6.0",40"@types/debug": "^4.1.12",41"@types/jest": "^29.5.14",42"@types/node": "^18.16.14",43"@types/primus": "^7.3.9"44}45}464748