Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/jupyter/package.json
1447 views
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
"./execute/*": "./dist/execute/*.js",
8
"./kernel": "./dist/kernel/index.js",
9
"./kernel/*": "./dist/kernel/*.js",
10
"./zmq": "./dist/zmq/index.js",
11
"./zmq/*": "./dist/zmq/*.js",
12
"./nbgrader": "./dist/nbgrader/index.js",
13
"./nbgrader/*": "./dist/nbgrader/*.js",
14
"./pool/*": "./dist/pool/*.js",
15
"./stateless-api/*": "./dist/stateless-api/*.js",
16
"./store/*": "./dist/store/*.js",
17
"./types": "./dist/types/index.js",
18
"./types/*": "./dist/types/*.js",
19
"./util": "./dist/util/index.js",
20
"./util/*": "./dist/util/*.js"
21
},
22
"scripts": {
23
"preinstall": "npx only-allow pnpm",
24
"build": "../node_modules/.bin/tsc --build",
25
"clean": "rm -rf node_modules dist",
26
"test": "pnpm exec jest --forceExit --maxWorkers=2",
27
"depcheck": "pnpx depcheck",
28
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput"
29
},
30
"files": [
31
"dist/**",
32
"bin/**",
33
"README.md",
34
"package.json"
35
],
36
"author": "SageMath, Inc.",
37
"keywords": [
38
"cocalc",
39
"jupyter"
40
],
41
"license": "SEE LICENSE.md",
42
"dependencies": {
43
"@cocalc/backend": "workspace:*",
44
"@cocalc/conat": "workspace:*",
45
"@cocalc/jupyter": "workspace:*",
46
"@cocalc/sync": "workspace:*",
47
"@cocalc/util": "workspace:*",
48
"awaiting": "^3.0.0",
49
"debug": "^4.4.0",
50
"expect": "^26.6.2",
51
"he": "^1.2.0",
52
"immutable": "^4.3.0",
53
"json-stable-stringify": "^1.0.1",
54
"jsonfile": "^6.1.0",
55
"jupyter-paths": "^2.0.3",
56
"kernelspecs": "^2.0.1",
57
"lodash": "^4.17.21",
58
"lru-cache": "^7.18.3",
59
"mkdirp": "^1.0.4",
60
"node-cleanup": "^2.1.2",
61
"shell-escape": "^0.2.0",
62
"uuid": "^8.3.2",
63
"zeromq": "^6.4.2"
64
},
65
"devDependencies": {
66
"@types/json-stable-stringify": "^1.0.32",
67
"@types/node": "^18.16.14",
68
"@types/node-cleanup": "^2.1.2"
69
},
70
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/jupyter",
71
"repository": {
72
"type": "git",
73
"url": "https://github.com/sagemathinc/cocalc"
74
}
75
}
76
77