Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/sync-client/package.json
1503 views
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": ["dist/**", "bin/**", "README.md", "package.json"],
12
"scripts": {
13
"preinstall": "npx only-allow pnpm",
14
"build": "../node_modules/.bin/tsc --build",
15
"clean": "rm -rf node_modules dist",
16
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",
17
"depcheck": "pnpx depcheck"
18
},
19
"author": "SageMath, Inc.",
20
"keywords": ["cocalc", "jupyter"],
21
"license": "SEE LICENSE.md",
22
"dependencies": {
23
"@cocalc/api-client": "workspace:*",
24
"@cocalc/backend": "workspace:*",
25
"@cocalc/primus-multiplex": "^1.1.0",
26
"@cocalc/primus-responder": "^1.0.5",
27
"@cocalc/sync": "workspace:*",
28
"@cocalc/util": "workspace:*",
29
"cookie": "^1.0.0",
30
"debug": "^4.4.0",
31
"primus": "^8.0.9",
32
"ws": "^8.18.0"
33
},
34
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/sync-client",
35
"repository": {
36
"type": "git",
37
"url": "https://github.com/sagemathinc/cocalc"
38
},
39
"devDependencies": {
40
"@types/cookie": "^0.6.0",
41
"@types/debug": "^4.1.12",
42
"@types/jest": "^29.5.14",
43
"@types/node": "^18.16.14",
44
"@types/primus": "^7.3.9"
45
}
46
}
47
48