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/package.json
Views: 687
1
{
2
"name": "@cocalc/sync",
3
"version": "0.11.2",
4
"description": "CoCalc realtime synchronization framework",
5
"exports": {
6
"./*": "./dist/*.js",
7
"./table": "./dist/table/index.js",
8
"./listings": "./dist/listings/index.js",
9
"./editor/db": "./dist/editor/db/index.js"
10
},
11
"scripts": {
12
"preinstall": "npx only-allow pnpm",
13
"build": "../node_modules/.bin/tsc --build",
14
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",
15
"test": "pnpm exec jest",
16
"prepublishOnly": "pnpm test"
17
},
18
"files": [
19
"dist/**",
20
"bin/**",
21
"README.md",
22
"package.json"
23
],
24
"author": "SageMath, Inc.",
25
"keywords": [
26
"cocalc",
27
"realtime synchronization"
28
],
29
"license": "SEE LICENSE.md",
30
"dependencies": {
31
"@cocalc/sync": "workspace:*",
32
"@cocalc/util": "workspace:*",
33
"@types/debug": "^4.1.12",
34
"@types/lodash": "^4.14.202",
35
"async": "^1.5.2",
36
"awaiting": "^3.0.0",
37
"debug": "^4.3.4",
38
"events": "3.3.0",
39
"immutable": "^4.3.0",
40
"json-stable-stringify": "^1.0.1",
41
"lodash": "^4.17.21",
42
"sha1": "^1.1.1"
43
},
44
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/sync",
45
"repository": {
46
"type": "git",
47
"url": "https://github.com/sagemathinc/cocalc"
48
},
49
"devDependencies": {
50
"@types/node": "^18.16.14",
51
"ts-jest": "^29.2.3"
52
}
53
}
54
55