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