Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/jupyter/package.json
5787 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=1",
27
"depcheck": "pnpx depcheck"
28
},
29
"files": ["dist/**", "bin/**", "README.md", "package.json"],
30
"author": "SageMath, Inc.",
31
"keywords": ["cocalc", "jupyter"],
32
"license": "SEE LICENSE.md",
33
"dependencies": {
34
"@cocalc/backend": "workspace:*",
35
"@cocalc/conat": "workspace:*",
36
"@cocalc/jupyter": "workspace:*",
37
"@cocalc/sync": "workspace:*",
38
"@cocalc/util": "workspace:*",
39
"awaiting": "^3.0.0",
40
"debug": "^4.4.0",
41
"expect": "^26.6.2",
42
"he": "^1.2.0",
43
"immutable": "^4.3.0",
44
"json-stable-stringify": "^1.0.1",
45
"jsonfile": "^6.1.0",
46
"jupyter-paths": "^2.0.3",
47
"kernelspecs": "^2.0.1",
48
"lodash": "^4.17.23",
49
"lru-cache": "^7.18.3",
50
"mkdirp": "^1.0.4",
51
"node-cleanup": "^2.1.2",
52
"shell-escape": "^0.2.0",
53
"uuid": "^8.3.2",
54
"zeromq": "^6.4.2"
55
},
56
"devDependencies": {
57
"@types/json-stable-stringify": "^1.0.32",
58
"@types/node": "^18.16.14",
59
"@types/node-cleanup": "^2.1.2"
60
},
61
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/jupyter",
62
"repository": {
63
"type": "git",
64
"url": "https://github.com/sagemathinc/cocalc"
65
}
66
}
67
68