Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/comm/package.json
1447 views
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": [
12
"dist/**",
13
"README.md",
14
"package.json",
15
"tsconfig.json"
16
],
17
"scripts": {
18
"preinstall": "npx only-allow pnpm",
19
"build": "../node_modules/.bin/tsc --build",
20
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",
21
"depcheck": "pnpx depcheck --ignores @types/node"
22
},
23
"author": "SageMath, Inc.",
24
"keywords": [
25
"cocalc"
26
],
27
"license": "SEE LICENSE.md",
28
"dependencies": {
29
"@cocalc/comm": "workspace:*",
30
"@cocalc/sync": "workspace:*",
31
"@cocalc/util": "workspace:*"
32
},
33
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/comm",
34
"repository": {
35
"type": "git",
36
"url": "https://github.com/sagemathinc/cocalc"
37
},
38
"devDependencies": {
39
"@types/node": "^18.16.14"
40
}
41
}
42
43