Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/conat/package.json
1709 views
1
{
2
"name": "@cocalc/conat",
3
"version": "1.0.0",
4
"description": "Conat -- pub/sub framework. Usable by both nodejs and browser.",
5
"exports": {
6
"./sync/*": "./dist/sync/*.js",
7
"./llm/*": "./dist/llm/*.js",
8
"./socket": "./dist/socket/index.js",
9
"./socket/*": "./dist/socket/*.js",
10
"./hub/changefeeds": "./dist/hub/changefeeds/index.js",
11
"./hub/api": "./dist/hub/api/index.js",
12
"./hub/api/*": "./dist/hub/api/*.js",
13
"./compute/*": "./dist/compute/*.js",
14
"./service": "./dist/service/index.js",
15
"./project/api": "./dist/project/api/index.js",
16
"./browser-api": "./dist/browser-api/index.js",
17
"./*": "./dist/*.js"
18
},
19
"scripts": {
20
"preinstall": "npx only-allow pnpm",
21
"build": "pnpm exec tsc --build",
22
"clean": "rm -rf dist node_modules",
23
"tsc": "pnpm exec tsc --watch --pretty --preserveWatchOutput",
24
"test": "pnpm exec jest",
25
"depcheck": "pnpx depcheck --ignores events,bufferutil,utf-8-validate"
26
},
27
"files": ["dist/**", "README.md", "package.json"],
28
"author": "SageMath, Inc.",
29
"keywords": ["utilities", "conat", "cocalc"],
30
"license": "SEE LICENSE.md",
31
"dependencies": {
32
"@cocalc/comm": "workspace:*",
33
"@cocalc/conat": "workspace:*",
34
"@cocalc/util": "workspace:*",
35
"@isaacs/ttlcache": "^1.4.1",
36
"@msgpack/msgpack": "^3.1.1",
37
"ascii-table3": "^1.0.1",
38
"awaiting": "^3.0.0",
39
"bufferutil": "^4.0.9",
40
"consistent-hash": "^1.2.2",
41
"dayjs": "^1.11.11",
42
"events": "3.3.0",
43
"immutable": "^4.3.0",
44
"js-base64": "^3.7.7",
45
"json-stable-stringify": "^1.0.1",
46
"lodash": "^4.17.21",
47
"socket.io": "^4.8.1",
48
"socket.io-client": "^4.8.1",
49
"utf-8-validate": "^6.0.5"
50
},
51
"devDependencies": {
52
"@types/better-sqlite3": "^7.6.13",
53
"@types/json-stable-stringify": "^1.0.32",
54
"@types/lodash": "^4.14.202",
55
"@types/node": "^18.16.14"
56
},
57
"repository": {
58
"type": "git",
59
"url": "https://github.com/sagemathinc/cocalc"
60
},
61
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/conat"
62
}
63
64