Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/sync-fs/package.json
1492 views
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": [
12
"dist/**",
13
"bin/**",
14
"README.md",
15
"package.json"
16
],
17
"scripts": {
18
"preinstall": "npx only-allow pnpm",
19
"build": "../node_modules/.bin/tsc --build",
20
"tsc": "../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",
21
"clean": "rm -rf node_modules dist",
22
"test": "pnpm exec jest --forceExit --runInBand",
23
"depcheck": "pnpx depcheck"
24
},
25
"author": "SageMath, Inc.",
26
"keywords": [
27
"cocalc",
28
"jupyter"
29
],
30
"license": "SEE LICENSE.md",
31
"dependencies": {
32
"@cocalc/api-client": "workspace:*",
33
"@cocalc/backend": "workspace:*",
34
"@cocalc/comm": "workspace:*",
35
"@cocalc/conat": "workspace:*",
36
"@cocalc/sync-client": "workspace:*",
37
"@cocalc/util": "workspace:*",
38
"lodash": "^4.17.21",
39
"lz4-napi": "^2.8.0",
40
"mkdirp": "^1.0.4"
41
},
42
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/sync-fs",
43
"repository": {
44
"type": "git",
45
"url": "https://github.com/sagemathinc/cocalc"
46
},
47
"devDependencies": {
48
"@types/node": "^18.16.14"
49
}
50
}
51
52