Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/project/package.json
5606 views
1
{
2
"name": "@cocalc/project",
3
"version": "1.40.0",
4
"description": "CoCalc: project daemon",
5
"exports": {
6
"./named-servers": "./dist/named-servers/index.js",
7
"./conat": "./dist/conat/index.js",
8
"./conat/terminal": "./dist/conat/terminal/index.js",
9
"./*": "./dist/*.js",
10
"./project-info": "./dist/project-info/index.js"
11
},
12
"keywords": [
13
"python",
14
"sage",
15
"sagemath",
16
"latex",
17
"terminal",
18
"web",
19
"ide",
20
"math",
21
"mathematics"
22
],
23
"dependencies": {
24
"@cocalc/backend": "workspace:*",
25
"@cocalc/comm": "workspace:*",
26
"@cocalc/conat": "workspace:*",
27
"@cocalc/jupyter": "workspace:*",
28
"@cocalc/primus-multiplex": "^1.1.0",
29
"@cocalc/primus-responder": "^1.0.5",
30
"@cocalc/project": "workspace:*",
31
"@cocalc/sync": "workspace:*",
32
"@cocalc/sync-client": "workspace:*",
33
"@cocalc/sync-fs": "workspace:*",
34
"@cocalc/util": "workspace:*",
35
"@lydell/node-pty": "^1.1.0",
36
"@types/jest": "^30.0.0",
37
"awaiting": "^3.0.0",
38
"body-parser": "^1.20.3",
39
"commander": "^7.2.0",
40
"compression": "^1.7.4",
41
"daemonize-process": "^3.0.0",
42
"diskusage": "^1.1.3",
43
"express": "^5.2.1",
44
"express-rate-limit": "^7.4.0",
45
"get-port": "^5.1.1",
46
"lodash": "^4.17.23",
47
"prettier": "^3.0.2",
48
"primus": "^8.0.9",
49
"prom-client": "^15.1.3",
50
"rimraf": "^5.0.5",
51
"temp": "^0.9.4",
52
"tmp": "0.2.4",
53
"uuid": "^8.3.2",
54
"websocket-sftp": "^0.8.4",
55
"which": "^2.0.2",
56
"ws": "^8.18.0"
57
},
58
"devDependencies": {
59
"@types/body-parser": "^1.19.5",
60
"@types/express": "^5.0.6",
61
"@types/lodash": "^4.14.202",
62
"@types/node": "^18.16.14",
63
"@types/primus": "^7.3.9",
64
"@types/uuid": "^8.3.1"
65
},
66
"scripts": {
67
"preinstall": "npx only-allow pnpm",
68
"start": "NODE_OPTIONS='--trace-warnings --unhandled-rejections=strict --enable-source-maps' pnpm cocalc-project",
69
"build": "../node_modules/.bin/tsc --build",
70
"test": "COCALC_PROJECT_ID=812abe34-a382-4bd1-9071-29b6f4334f03 COCALC_USERNAME=user pnpm exec jest",
71
"depcheck": "pnpx depcheck",
72
"prepublishOnly": "pnpm test",
73
"clean": "rm -rf dist"
74
},
75
"author": "SageMath, Inc.",
76
"contributors": [
77
"William Stein <[email protected]>"
78
],
79
"license": "SEE LICENSE.md",
80
"bugs": {
81
"url": "https://github.com/sagemathinc/cocalc/issues"
82
},
83
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/project",
84
"repository": {
85
"type": "git",
86
"url": "https://github.com/sagemathinc/cocalc"
87
},
88
"bin": {
89
"cocalc-project": "./bin/cocalc-project.js"
90
}
91
}
92
93