-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.3 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "s3mini",
"version": "0.9.2",
"description": "👶 Tiny & fast S3 client for node and edge computing platforms",
"homepage": "https://github.com/good-lly/s3mini",
"bugs": {
"url": "https://github.com/good-lly/s3mini/issues"
},
"author": "good-lly",
"repository": {
"type": "git",
"url": "git+https://github.com/good-lly/s3mini.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"./dist/",
"./src/",
"./package.json",
"./README.md"
],
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testMatch='<rootDir>/tests/presigned-url.test.js' --verbose",
"test:public": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.public.js --verbose",
"test:providers": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.js --verbose",
"test:e2e": "npm run test:public && npm run test:providers",
"test:perf": "node ./tests/perf/performance.test.js",
"lint": "eslint src --ext .ts",
"format": "prettier -w src",
"formatcheck": "prettier --list-different src",
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"build": "npm run clean && npm run typecheck && rollup -c",
"dev": "npm run clean && npm run typecheck -w && rollup -c -w"
},
"main": "dist/s3mini.min.js",
"module": "dist/s3mini.js",
"types": "dist/s3mini.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/s3mini.d.ts",
"development": "./dist/s3mini.js",
"default": "./dist/s3mini.min.js"
},
"require": {
"types": "./dist/s3mini.d.ts",
"default": "./dist/s3mini.min.js"
}
}
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"engineStrict": true,
"targets": {
"node": 20,
"edge": true,
"worker": true,
"bun": true,
"browser": false
},
"license": "MIT",
"private": false,
"devDependencies": {
"@aws-lite/client": "0.23.5",
"@aws-lite/s3": "0.2.6",
"@aws-sdk/client-s3": "3.1014.0",
"@eslint/js": "^10.0.1",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "1.0.0",
"@rollup/plugin-typescript": "12.3.0",
"console-table-printer": "2.15.0",
"dotenv": "17.3.1",
"eslint": "10.1.0",
"eslint-config-prettier": "^10.1.8",
"jest": "30.3.0",
"minio": "8.0.7",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"rollup": "4.60.0",
"rollup-plugin-dts": "6.4.1",
"s3mini": "0.9.1",
"tinybench": "6.0.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1"
},
"overrides": {
"glob": "13.0.0"
},
"prettier": {
"bracketSpacing": true,
"bracketSameLine": false,
"singleQuote": true,
"semi": true,
"endOfLine": "lf",
"tabWidth": 2,
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 120
},
"keywords": [
"s3",
"s3 client",
"s3 sdk",
"b2",
"b2 client",
"r2",
"r2 client",
"cloudflare",
"cloudflare r2",
"AWS S3",
"Oracle Cloud Infrastructure",
"OCI Object Storage",
"Azure Blob Storage",
"Google Cloud Storage",
"Ceph",
"backblaze",
"scaleway",
"digitalocean",
"minio"
]
}