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