-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.57 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ultralight-s3",
"version": "0.0.8",
"description": "🪽 A turbo lightweight S3 client, no-dependency, ideal for edges or platforms like @cloudflare @aws @Azure @GoogleCloudPlatform @ceph @minio",
"main": "./lib/index.min.js",
"module": "./lib/index.min.js",
"types": "./lib/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.min.js"
},
"types": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.d.ts"
}
}
},
"./full": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"prepublishOnly": "npm run build && npm run test:all",
"build:ts": "tsc",
"build": "tsc --module nodenext --outDir ./lib/ && esbuild lib/index.js --bundle --outfile=lib/index.min.js --platform=node --format=esm --minify --sourcemap",
"dev:wrangler": "npm run build && wrangler dev --port 8787",
"dev:node": "nodemon --watch './src/index.ts' --delay 2.5 -L --verbose --exec 'tsc --module nodenext --outDir ./lib/ && node --max-old-space-size=4096 --env-file ./.env ./dev/node-dev.js'",
"test:minio": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config node.jest.config.json",
"test:cloudflare": "node --env-file ./.env-cf --experimental-vm-modules node_modules/jest/bin/jest.js --config cloudflare.jest.config.json",
"test:all": "npm run test:minio && npm run test:cloudflare",
"clean": "rm -rf lib"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sentienhq/ultralight-s3.git"
},
"jest": {
"projects": [
"tests/node.jest.config.js"
]
},
"engines": {
"node": ">=20"
},
"keywords": [
"api",
"amazon",
"minio",
"cloud",
"s3",
"storage",
"aws",
"cloudflare",
"cloudflare-r2",
"cloudflare-storage",
"azure",
"google",
"google-cloud",
"ceph"
],
"author": "Peter Jensen @ SentienHQ",
"license": "MIT",
"bugs": {
"url": "https://github.com/sentienhq/ultralight-s3/issues"
},
"homepage": "https://github.com/sentienhq/ultralight-s3#readme",
"devDependencies": {
"@hono/node-server": "^1.11.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"esbuild": "^0.23.0",
"hono": "^4.5.8",
"jest": "^29.7.0",
"minio": "^8.0.1",
"nodemon": "^3.1.3",
"typescript": "^5.5.3",
"wrangler": "^3.73.0"
}
}