forked from zen-fs/cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.58 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@zenfs/cloud",
"version": "0.0.1",
"description": "ZenFS Cloud backends",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/james-pre"
},
"main": "dist/index.js",
"types": "src/index.ts",
"keywords": [
"filesystem",
"dropbox",
"S3"
],
"type": "module",
"homepage": "https://github.com/zen-fs/cloud",
"author": "James Prevett <jp@jamespre.dev> (https://jamespre.dev)",
"contributors": [
"Marcos Candeia <marrcooos@gmail.com>",
"John Vilk <jvilk@cs.umass.edu> (http://people.cs.umass.edu/~jvilk)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zen-fs/cloud.git"
},
"bugs": {
"url": "https://github.com/zen-fs/cloud/issues"
},
"engines": {
"node": ">= 18"
},
"files": [
"dist",
"src",
"license.md",
"tsconfig.json"
],
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src",
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc --out docs --name 'ZenFS Cloud' src/index.ts",
"test": "#tsx --test --experimental-test-coverage",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.12.7",
"eslint": "^9.11.1",
"prettier": "^3.2.5",
"tsx": "^4.19.1",
"typedoc": "^0.26.7",
"typescript": "^5.4.0",
"typescript-eslint": "^8.8.0"
},
"peerDependencies": {
"@zenfs/core": "^1.0.4"
},
"optionalDependencies": {
"dropbox": "^10.34.0",
"@aws-sdk/client-s3": "^3.679.0"
}
}