Path: blob/master/src/packages/file-server/package.json
1447 views
{1"name": "@cocalc/file-server",2"version": "1.0.0",3"description": "CoCalc File Server",4"exports": {5"./zfs": "./dist/zfs/index.js",6"./zfs/*": "./dist/zfs/*.js"7},8"scripts": {9"preinstall": "npx only-allow pnpm",10"build": "pnpm exec tsc --build",11"tsc": "pnpm exec tsc --watch --pretty --preserveWatchOutput",12"test": "pnpm exec jest --runInBand",13"depcheck": "pnpx depcheck"14},15"files": ["dist/**", "README.md", "package.json"],16"author": "SageMath, Inc.",17"keywords": ["utilities", "btrfs", "zfs", "cocalc"],18"license": "SEE LICENSE.md",19"dependencies": {20"@cocalc/backend": "workspace:*",21"@cocalc/conat": "workspace:*",22"@cocalc/file-server": "workspace:*",23"@cocalc/util": "workspace:*",24"awaiting": "^3.0.0",25"better-sqlite3": "^11.10.0",26"lodash": "^4.17.21"27},28"devDependencies": {29"@types/better-sqlite3": "^7.6.13",30"@types/lodash": "^4.14.202"31},32"repository": {33"type": "git",34"url": "https://github.com/sagemathinc/cocalc"35},36"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/file-server"37}383940