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/api-client/package.json
Views: 687
1
{
2
"name": "@cocalc/api-client",
3
"version": "0.1.2",
4
"description": "CoCalc api client - use cocalc from nodejs",
5
"main": "./dist/index.js",
6
"scripts": {
7
"preinstall": "npx only-allow pnpm",
8
"build": "../node_modules/.bin/tsc --build",
9
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput"
10
},
11
"files": [
12
"dist/**",
13
"bin/**",
14
"README.md",
15
"package.json"
16
],
17
"author": "SageMath, Inc.",
18
"keywords": [
19
"cocalc",
20
"jupyter"
21
],
22
"license": "SEE LICENSE.md",
23
"dependencies": {
24
"@cocalc/api-client": "workspace:*",
25
"@cocalc/backend": "workspace:*",
26
"tsimportlib": "^0.0.5"
27
},
28
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/compute",
29
"repository": {
30
"type": "git",
31
"url": "https://github.com/sagemathinc/cocalc"
32
},
33
"devDependencies": {
34
"@types/node": "^18.16.14"
35
}
36
}
37
38