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