Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/sync/package.json
1447 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
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",
15
"test": "pnpm exec jest",
16
"depcheck": "pnpx depcheck --ignores events",
17
"prepublishOnly": "pnpm test"
18
},
19
"files": ["dist/**", "bin/**", "README.md", "package.json"],
20
"author": "SageMath, Inc.",
21
"keywords": ["cocalc", "realtime synchronization"],
22
"license": "SEE LICENSE.md",
23
"dependencies": {
24
"@cocalc/conat": "workspace:*",
25
"@cocalc/sync": "workspace:*",
26
"@cocalc/util": "workspace:*",
27
"async": "^1.5.2",
28
"awaiting": "^3.0.0",
29
"events": "3.3.0",
30
"immutable": "^4.3.0",
31
"json-stable-stringify": "^1.0.1",
32
"lodash": "^4.17.21",
33
"lru-cache": "^7.18.3"
34
},
35
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/sync",
36
"repository": {
37
"type": "git",
38
"url": "https://github.com/sagemathinc/cocalc"
39
},
40
"devDependencies": {
41
"@types/lodash": "^4.14.202",
42
"@types/node": "^18.16.14",
43
"ts-jest": "^29.2.3"
44
}
45
}
46
47