forked from f2face/cloudflare-r2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "@rivo-gg/cloudflare-r2",
"version": "0.0.0-development",
"description": "S3 wrapper for Cloudflare R2.",
"main": "./lib/index.js",
"scripts": {
"build": "pnpm clean && tsc",
"build:watch": "pnpm clean && tsc --watch",
"clean": "rimraf dist/",
"test": "jest --passWithNoTests",
"format": "biome format --write",
"lint": "biome check",
"semantic-release": "semantic-release",
"test:coverage": "jest --coverage --passWithNoTests"
},
"keywords": ["cloudflare", "r2", "cloud", "storage"],
"files": ["dist", "README.md"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"require": "./dist/types.js"
}
},
"publishConfig": {
"access": "public"
},
"license": "ISC",
"author": "Surya Oktafendri <[email protected]>, Rivo-gg",
"repository": {
"type": "git",
"url": "https://github.com/rivo-gg/cloudflare-r2.git"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.651.1",
"@aws-sdk/lib-storage": "^3.651.1",
"@aws-sdk/s3-request-presigner": "^3.651.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.0",
"@tsconfig/recommended": "^1.0.7",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.5",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.1.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}