Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/sync/package.json
5577 views
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
"test": "pnpm exec jest --forceExit",
15
"depcheck": "pnpx depcheck --ignores events",
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/conat": "workspace:*",
32
"@cocalc/sync": "workspace:*",
33
"@cocalc/util": "workspace:*",
34
"async": "^1.5.2",
35
"awaiting": "^3.0.0",
36
"events": "3.3.0",
37
"immutable": "^4.3.0",
38
"json-stable-stringify": "^1.0.1",
39
"lodash": "^4.17.23",
40
"lru-cache": "^7.18.3"
41
},
42
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/sync",
43
"repository": {
44
"type": "git",
45
"url": "https://github.com/sagemathinc/cocalc"
46
},
47
"devDependencies": {
48
"@types/lodash": "^4.14.202",
49
"@types/node": "^18.16.14",
50
"ts-jest": "^29.4.5"
51
}
52
}
53
54