Path: blob/master/src/packages/sync-fs/package.json
16139 views
{1"name": "@cocalc/sync-fs",2"version": "0.1.0",3"description": "CoCalc Filesystem Sync",4"main": "./dist/lib/index.js",5"exports": {6".": "./dist/lib/index.js",7"./*": "./dist/*.js",8"./lib/*": "./dist/lib/*.js"9},10"files": [11"dist/**",12"bin/**",13"README.md",14"package.json"15],16"scripts": {17"preinstall": "npx only-allow pnpm",18"build": "../node_modules/.bin/tsc --build",19"clean": "rm -rf node_modules dist",20"test": "pnpm exec jest --forceExit --runInBand",21"depcheck": "pnpx depcheck"22},23"author": "SageMath, Inc.",24"keywords": [25"cocalc",26"jupyter"27],28"license": "SEE LICENSE.md",29"dependencies": {30"@cocalc/api-client": "workspace:*",31"@cocalc/backend": "workspace:*",32"@cocalc/comm": "workspace:*",33"@cocalc/conat": "workspace:*",34"@cocalc/sync-client": "workspace:*",35"@cocalc/util": "workspace:*",36"lodash": "^4.17.23",37"lz4-napi": "^2.8.0",38"mkdirp": "^1.0.4"39},40"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/sync-fs",41"repository": {42"type": "git",43"url": "https://github.com/sagemathinc/cocalc"44},45"devDependencies": {46"@types/node": "^18.16.14"47}48}495051