-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.62 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
{
"name": "node-cloudflare-r2",
"version": "0.4.0",
"description": "S3 wrapper for Cloudflare R2.",
"main": "./lib/index.js",
"scripts": {
"build": "pnpm clean && tsc",
"build:watch": "pnpm clean && tsc --watch",
"clean": "rimraf lib/",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"cloudflare",
"r2",
"cloud",
"storage"
],
"files": [
"lib/"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.js"
},
"./types": {
"types": "./lib/types.d.ts",
"import": "./lib/types.js",
"require": "./lib/types.js"
}
},
"license": "ISC",
"author": "Surya Oktafendri <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/f2face/cloudflare-r2.git"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.685.0",
"@aws-sdk/lib-storage": "^3.685.0",
"@aws-sdk/s3-request-presigner": "^3.685.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.8",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}