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