Path: blob/master/src/packages/file-server/package.json
2769 views
{1"name": "@cocalc/file-server",2"version": "1.0.0",3"description": "CoCalc File Server",4"exports": {5"./btrfs": "./dist/btrfs/index.js",6"./btrfs/*": "./dist/btrfs/*.js"7},8"scripts": {9"preinstall": "npx only-allow pnpm",10"build": "pnpm exec tsc --build",11"test": "pnpm exec jest",12"depcheck": "pnpx depcheck",13"clean": "rm -rf node_modules dist"14},15"files": [16"dist/**",17"README.md",18"package.json"19],20"author": "SageMath, Inc.",21"keywords": [22"utilities",23"btrfs",24"cocalc"25],26"license": "SEE LICENSE.md",27"dependencies": {28"@cocalc/backend": "workspace:*",29"@cocalc/file-server": "workspace:*",30"@cocalc/util": "workspace:*",31"awaiting": "^3.0.0"32},33"devDependencies": {34"@types/jest": "^30.0.0",35"@types/node": "^18.16.14"36},37"repository": {38"type": "git",39"url": "https://github.com/sagemathinc/cocalc"40},41"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/file-server"42}434445