@zola_do/seaweed 0.2.13 → 0.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +92 -92
package/package.json CHANGED
@@ -1,92 +1,92 @@
1
- {
2
- "name": "@zola_do/seaweed",
3
- "version": "0.2.13",
4
- "description": "AWS S3-compatible storage for NestJS",
5
- "author": "zolaDO",
6
- "license": "ISC",
7
- "sideEffects": false,
8
- "engines": {
9
- "node": ">=20.0.0"
10
- },
11
- "publishConfig": {
12
- "access": "public"
13
- },
14
- "main": "./dist/index.js",
15
- "types": "./dist/index.d.ts",
16
- "exports": {
17
- ".": {
18
- "types": "./dist/index.d.ts",
19
- "require": "./dist/index.js",
20
- "default": "./dist/index.js"
21
- },
22
- "./module": {
23
- "types": "./dist/module.d.ts",
24
- "require": "./dist/module.js",
25
- "default": "./dist/module.js"
26
- },
27
- "./services": {
28
- "types": "./dist/services/index.d.ts",
29
- "require": "./dist/services/index.js",
30
- "default": "./dist/services/index.js"
31
- },
32
- "./types": {
33
- "types": "./dist/types.d.ts",
34
- "require": "./dist/types.js",
35
- "default": "./dist/types.js"
36
- },
37
- "./exceptions": {
38
- "types": "./dist/exceptions/index.d.ts",
39
- "require": "./dist/exceptions/index.js",
40
- "default": "./dist/exceptions/index.js"
41
- }
42
- },
43
- "files": [
44
- "dist",
45
- "README.md"
46
- ],
47
- "scripts": {
48
- "clean": "rimraf dist",
49
- "typecheck": "tsc --noEmit",
50
- "build": "npm run clean && tsc",
51
- "prepublishOnly": "npm run build"
52
- },
53
- "peerDependencies": {
54
- "@nestjs/common": "^10.0.0 || ^11.0.0",
55
- "reflect-metadata": "^0.1.0 || ^0.2.0",
56
- "rxjs": "^7.0.0 || ^8.0.0"
57
- },
58
- "dependencies": {
59
- "@aws-sdk/client-s3": "^3.1004.0",
60
- "@aws-sdk/s3-request-presigner": "^3.1004.0"
61
- },
62
- "devDependencies": {
63
- "rimraf": "^6.1.3",
64
- "typescript": "^5.9.3"
65
- },
66
- "repository": {
67
- "directory": "packages/seaweed",
68
- "type": "git",
69
- "url": "https://github.com/zola0031/zola-nestjs-shared.git"
70
- },
71
- "homepage": "https://github.com/zola0031/zola-nestjs-shared#readme",
72
- "bugs": {
73
- "url": "https://github.com/zola0031/zola-nestjs-shared/issues"
74
- },
75
- "funding": {
76
- "type": "github",
77
- "url": "https://github.com/sponsors/zola0031"
78
- },
79
- "keywords": [
80
- "nestjs",
81
- "typescript",
82
- "library",
83
- "shared",
84
- "monorepo",
85
- "zola_do",
86
- "s3",
87
- "storage",
88
- "seaweedfs",
89
- "object-storage",
90
- "nestjs-shared"
91
- ]
92
- }
1
+ {
2
+ "name": "@zola_do/seaweed",
3
+ "version": "0.2.15",
4
+ "description": "AWS S3-compatible storage for NestJS",
5
+ "author": "zolaDO",
6
+ "license": "ISC",
7
+ "sideEffects": false,
8
+ "engines": {
9
+ "node": ">=20.0.0"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "main": "./dist/index.js",
15
+ "types": "./dist/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/index.d.ts",
19
+ "require": "./dist/index.js",
20
+ "default": "./dist/index.js"
21
+ },
22
+ "./module": {
23
+ "types": "./dist/module.d.ts",
24
+ "require": "./dist/module.js",
25
+ "default": "./dist/module.js"
26
+ },
27
+ "./services": {
28
+ "types": "./dist/services/index.d.ts",
29
+ "require": "./dist/services/index.js",
30
+ "default": "./dist/services/index.js"
31
+ },
32
+ "./types": {
33
+ "types": "./dist/types.d.ts",
34
+ "require": "./dist/types.js",
35
+ "default": "./dist/types.js"
36
+ },
37
+ "./exceptions": {
38
+ "types": "./dist/exceptions/index.d.ts",
39
+ "require": "./dist/exceptions/index.js",
40
+ "default": "./dist/exceptions/index.js"
41
+ }
42
+ },
43
+ "files": [
44
+ "dist",
45
+ "README.md"
46
+ ],
47
+ "scripts": {
48
+ "clean": "rimraf dist",
49
+ "typecheck": "tsc --noEmit",
50
+ "build": "rimraf dist && tsc",
51
+ "prepublishOnly": "rimraf dist && tsc"
52
+ },
53
+ "peerDependencies": {
54
+ "@nestjs/common": "^10.0.0 || ^11.0.0",
55
+ "reflect-metadata": "^0.1.0 || ^0.2.0",
56
+ "rxjs": "^7.0.0 || ^8.0.0"
57
+ },
58
+ "dependencies": {
59
+ "@aws-sdk/client-s3": "^3.1004.0",
60
+ "@aws-sdk/s3-request-presigner": "^3.1004.0"
61
+ },
62
+ "devDependencies": {
63
+ "rimraf": "^6.1.3",
64
+ "typescript": "^5.9.3"
65
+ },
66
+ "repository": {
67
+ "directory": "packages/seaweed",
68
+ "type": "git",
69
+ "url": "https://github.com/zola0031/zola-nestjs-shared.git"
70
+ },
71
+ "homepage": "https://github.com/zola0031/zola-nestjs-shared#readme",
72
+ "bugs": {
73
+ "url": "https://github.com/zola0031/zola-nestjs-shared/issues"
74
+ },
75
+ "funding": {
76
+ "type": "github",
77
+ "url": "https://github.com/sponsors/zola0031"
78
+ },
79
+ "keywords": [
80
+ "nestjs",
81
+ "typescript",
82
+ "library",
83
+ "shared",
84
+ "monorepo",
85
+ "zola_do",
86
+ "s3",
87
+ "storage",
88
+ "seaweedfs",
89
+ "object-storage",
90
+ "nestjs-shared"
91
+ ]
92
+ }