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