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/terminal/package.json
Views: 687
1
{
2
"name": "@cocalc/terminal",
3
"version": "0.1.2",
4
"description": "CoCalc's Nodejs Terminal Server",
5
"main": "./dist/index.js",
6
"scripts": {
7
"preinstall": "npx only-allow pnpm",
8
"build": "../node_modules/.bin/tsc --build",
9
"clean": "rm -rf dist node_modules",
10
"_test_doc_": "--runInBand -- serial only because crashes when running all tests across all packages",
11
"test": "pnpm exec jest --runInBand --forceExit ",
12
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput"
13
},
14
"files": [
15
"dist/**",
16
"bin/**",
17
"README.md",
18
"package.json"
19
],
20
"author": "SageMath, Inc.",
21
"keywords": [
22
"cocalc",
23
"jupyter",
24
"terminal"
25
],
26
"license": "SEE LICENSE.md",
27
"dependencies": {
28
"@cocalc/api-client": "workspace:*",
29
"@cocalc/backend": "workspace:*",
30
"@cocalc/comm": "workspace:*",
31
"@cocalc/primus-multiplex": "^1.1.0",
32
"@cocalc/primus-responder": "^1.0.5",
33
"@cocalc/util": "workspace:*",
34
"awaiting": "^3.0.0",
35
"debug": "^4.3.2",
36
"lodash": "^4.17.21",
37
"node-pty": "^1.0.0",
38
"primus": "^8.0.7"
39
},
40
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/terminal",
41
"repository": {
42
"type": "git",
43
"url": "https://github.com/sagemathinc/cocalc"
44
},
45
"devDependencies": {
46
"@types/lodash": "^4.14.202",
47
"@types/node": "^18.16.14",
48
"@types/primus": "^7.3.6"
49
}
50
}
51
52