-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.96 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
{
"name": "s3-simpler",
"version": "0.0.1",
"description": "Let's be honest. What do you need when working with S3? Right, simply uploading, downloading, and sharing.",
"private": "true",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./index.js": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./index.d.ts": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.ts"
}
},
"scripts": {
"build": "esbuild ./index.ts --bundle --platform=node",
"build:esm": "pnpm build --format=esm --main-fields=module,main --outdir=./dist",
"build:cjs": "pnpm build --format=cjs --main-fields=main,module --outfile=dist/index.cjs",
"build:all": "pnpm build:esm && pnpm build:cjs",
"lint": "biome check --apply ./src ./tests",
"lint:unsafe": "biome check --apply-unsafe ./src ./tests",
"format": "biome format --write ./src ./tests",
"test": "vitest",
"test:watch": "vitest --watch",
"test:unit": "vitest --config ./tests/vitest.config.ts --run",
"test:integration": "vitest --config ./tests/vitest.config.integ.ts --run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"engines": {
"node": ">= 18"
},
"author": {
"name": "John Nguyen",
"email": "johnyscrazy@gmail.com",
"organization": false
},
"devDependencies": {
"@aws-sdk/types": "^3.433.0",
"@biomejs/biome": "1.3.1",
"@tsconfig/recommended": "^1.0.3",
"@types/node": "^20.8.9",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"aws-sdk-client-mock": "^3.0.0",
"esbuild": "^0.19.5",
"standard-version": "^9.5.0",
"typescript": "^5.2.2",
"vitest": "^v1.0.0-beta.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.437.0",
"@aws-sdk/s3-request-presigner": "^3.437.0"
},
"license": "Apache-2.0"
}