Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/api-client/package.json
5606 views
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
"depcheck": "pnpx depcheck --ignores @cocalc/api-client "
10
},
11
"files": ["dist/**", "bin/**", "README.md", "package.json"],
12
"author": "SageMath, Inc.",
13
"keywords": ["cocalc", "jupyter"],
14
"license": "SEE LICENSE.md",
15
"dependencies": {
16
"@cocalc/api-client": "workspace:*",
17
"@cocalc/backend": "workspace:*",
18
"@cocalc/util": "workspace:*"
19
},
20
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/compute",
21
"repository": {
22
"type": "git",
23
"url": "https://github.com/sagemathinc/cocalc"
24
},
25
"devDependencies": {
26
"@types/node": "^18.16.14"
27
}
28
}
29
30