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/jupyter/package.json
Views: 687
{1"name": "@cocalc/jupyter",2"version": "0.1.2",3"description": "CoCalc Jupyter -- code to support using Jupyter in cocalc, mainly across all clients",4"exports": {5"./*": "./dist/*.js",6"./blobs": "./dist/blobs/index.js",7"./execute/*": "./dist/execute/*.js",8"./kernel": "./dist/kernel/index.js",9"./kernel/*": "./dist/kernel/*.js",10"./nbgrader": "./dist/nbgrader/index.js",11"./nbgrader/*": "./dist/nbgrader/*.js",12"./pool/*": "./dist/pool/*.js",13"./stateless-api/*": "./dist/stateless-api/*.js",14"./store/*": "./dist/store/*.js",15"./types": "./dist/types/index.js",16"./types/*": "./dist/types/*.js",17"./util": "./dist/util/index.js",18"./util/*": "./dist/util/*.js"19},20"scripts": {21"preinstall": "npx only-allow pnpm",22"build": "../node_modules/.bin/tsc --build",23"test": "pnpm exec jest",24"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput"25},26"files": [27"dist/**",28"bin/**",29"README.md",30"package.json"31],32"author": "SageMath, Inc.",33"keywords": [34"cocalc",35"jupyter"36],37"license": "SEE LICENSE.md",38"dependencies": {39"@cocalc/backend": "workspace:*",40"@cocalc/jupyter": "workspace:*",41"@cocalc/sync": "workspace:*",42"@cocalc/sync-client": "workspace:*",43"@cocalc/util": "workspace:*",44"@nteract/messaging": "^7.0.20",45"@types/better-sqlite3": "^7.6.4",46"@types/node-cleanup": "^2.1.2",47"awaiting": "^3.0.0",48"better-sqlite3": "^8.3.0",49"debug": "^4.3.2",50"enchannel-zmq-backend": "^9.1.23",51"execa": "^8.0.1",52"expect": "^26.6.2",53"he": "^1.2.0",54"immutable": "^4.3.0",55"json-stable-stringify": "^1.0.1",56"jsonfile": "^6.1.0",57"jupyter-paths": "^2.0.3",58"kernelspecs": "^2.0.1",59"lodash": "^4.17.21",60"lru-cache": "^7.18.3",61"mkdirp": "^1.0.4",62"node-cleanup": "^2.1.2",63"portfinder": "^1.0.32",64"shell-escape": "^0.2.0",65"tsimportlib": "^0.0.5",66"uuid": "^8.3.2"67},68"devDependencies": {69"@types/node": "^18.16.14"70},71"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/jupyter",72"repository": {73"type": "git",74"url": "https://github.com/sagemathinc/cocalc"75}76}777879