-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.65 KB
/
package.json
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
72
73
{
"name": "@zenfs/cloud",
"version": "0.1.0",
"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 <[email protected]> (https://jamespre.dev)",
"contributors": [
"Marcos Candeia <[email protected]>",
"John Vilk <[email protected]> (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.1.0"
},
"optionalDependencies": {
"@aws-sdk/client-s3": "^3.679.0",
"@types/gapi": "^0.0.47",
"@types/gapi.client.drive-v3": "^0.0.5",
"dropbox": "^10.34.0"
}
}