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