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/sync-fs/package.json
Views: 687
1
{
2
"name": "@cocalc/sync-fs",
3
"version": "0.1.0",
4
"description": "CoCalc Filesystem Sync",
5
"main": "./dist/lib/index.js",
6
"exports": {
7
".": "./dist/lib/index.js",
8
"./*": "./dist/*.js",
9
"./lib/*": "./dist/lib/*.js"
10
},
11
"files": ["dist/**", "bin/**", "README.md", "package.json"],
12
"scripts": {
13
"preinstall": "npx only-allow pnpm",
14
"build": "../node_modules/.bin/tsc --build",
15
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",
16
"clean": "rm -rf node_modules dist"
17
},
18
"author": "SageMath, Inc.",
19
"keywords": ["cocalc", "jupyter"],
20
"license": "SEE LICENSE.md",
21
"dependencies": {
22
"@cocalc/api-client": "workspace:*",
23
"@cocalc/backend": "workspace:*",
24
"@cocalc/comm": "workspace:*",
25
"@cocalc/sync-client": "workspace:*",
26
"@cocalc/util": "workspace:*",
27
"@types/lz4": "^0.6.3",
28
"execa": "^8.0.1",
29
"lodash": "^4.17.21",
30
"lz4": "^0.6.5",
31
"mkdirp": "^1.0.4",
32
"tsimportlib": "^0.0.5"
33
},
34
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/sync-fs",
35
"repository": {
36
"type": "git",
37
"url": "https://github.com/sagemathinc/cocalc"
38
},
39
"devDependencies": {
40
"@types/node": "^18.16.14"
41
}
42
}
43
44