Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/project/package.json
1447 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": "^29.5.14",
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": "^4.21.2",
44
"express-rate-limit": "^7.4.0",
45
"get-port": "^5.1.1",
46
"lodash": "^4.17.21",
47
"prettier": "^3.0.2",
48
"primus": "^8.0.9",
49
"prom-client": "^13.0.0",
50
"rimraf": "^5.0.5",
51
"temp": "^0.9.4",
52
"tmp": "0.0.33",
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": "^4.17.21",
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
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",
71
"test": "COCALC_PROJECT_ID=812abe34-a382-4bd1-9071-29b6f4334f03 COCALC_USERNAME=user pnpm exec jest",
72
"depcheck": "pnpx depcheck",
73
"prepublishOnly": "pnpm test",
74
"clean": "rm -rf dist"
75
},
76
"author": "SageMath, Inc.",
77
"contributors": [
78
"William Stein <[email protected]>"
79
],
80
"license": "SEE LICENSE.md",
81
"bugs": {
82
"url": "https://github.com/sagemathinc/cocalc/issues"
83
},
84
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/project",
85
"repository": {
86
"type": "git",
87
"url": "https://github.com/sagemathinc/cocalc"
88
},
89
"bin": {
90
"cocalc-project": "./bin/cocalc-project.js"
91
}
92
}
93
94