CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/comm/package.json
Views: 687
1
{
2
"name": "@cocalc/comm",
3
"version": "0.1.0",
4
"description": "Communication between project and frontend app support",
5
"exports": {
6
"./*": "./dist/*.js",
7
"./websocket/*": "./dist/websocket/*.js",
8
"./project-status/*": "./dist/project-status/*.js",
9
"./project-info/*": "./dist/project-info/*.js"
10
},
11
"files": ["dist/**", "README.md", "package.json", "tsconfig.json"],
12
"scripts": {
13
"preinstall": "npx only-allow pnpm",
14
"build": "../node_modules/.bin/tsc --build",
15
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput"
16
},
17
"author": "SageMath, Inc.",
18
"keywords": ["cocalc"],
19
"license": "SEE LICENSE.md",
20
"dependencies": {},
21
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/comm",
22
"repository": {
23
"type": "git",
24
"url": "https://github.com/sagemathinc/cocalc"
25
},
26
"dependencies": {
27
"@cocalc/comm": "workspace:*",
28
"@cocalc/jupyter": "workspace:*",
29
"@cocalc/sync": "workspace:*",
30
"@cocalc/util": "workspace:*"
31
},
32
"devDependencies": {
33
"@types/node": "^18.16.14"
34
}
35
}
36
37