Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/conat/package.json
1452 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"
26
},
27
"files": [
28
"dist/**",
29
"README.md",
30
"package.json"
31
],
32
"author": "SageMath, Inc.",
33
"keywords": [
34
"utilities",
35
"conat",
36
"cocalc"
37
],
38
"license": "SEE LICENSE.md",
39
"dependencies": {
40
"@cocalc/comm": "workspace:*",
41
"@cocalc/conat": "workspace:*",
42
"@cocalc/redis-streams-adapter": "^0.2.3",
43
"@cocalc/util": "workspace:*",
44
"@isaacs/ttlcache": "^1.4.1",
45
"@msgpack/msgpack": "^3.1.1",
46
"@socket.io/redis-adapter": "^8.3.0",
47
"ascii-table3": "^1.0.1",
48
"awaiting": "^3.0.0",
49
"consistent-hash": "^1.2.2",
50
"dayjs": "^1.11.11",
51
"events": "3.3.0",
52
"immutable": "^4.3.0",
53
"iovalkey": "^0.3.1",
54
"js-base64": "^3.7.7",
55
"json-stable-stringify": "^1.0.1",
56
"lodash": "^4.17.21",
57
"socket.io": "^4.8.1",
58
"socket.io-client": "^4.8.1"
59
},
60
"devDependencies": {
61
"@types/better-sqlite3": "^7.6.13",
62
"@types/json-stable-stringify": "^1.0.32",
63
"@types/lodash": "^4.14.202",
64
"@types/node": "^18.16.14"
65
},
66
"repository": {
67
"type": "git",
68
"url": "https://github.com/sagemathinc/cocalc"
69
},
70
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/conat"
71
}
72
73