CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

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