@tacxou/nestjs_module_factorydrive 1.1.6
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.
- package/LICENSE +21 -0
- package/README.md +245 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/LICENSE +21 -0
- package/dist/README.md +245 -0
- package/dist/exceptions/authorization-required.exception.d.ts +5 -0
- package/dist/exceptions/driver-not-supported.exception.d.ts +5 -0
- package/dist/exceptions/file-not-found.exception.d.ts +5 -0
- package/dist/exceptions/index.d.ts +9 -0
- package/dist/exceptions/invalid-config.exception.d.ts +7 -0
- package/dist/exceptions/method-not-supported.exception.d.ts +4 -0
- package/dist/exceptions/no-such-bucket.exception.d.ts +5 -0
- package/dist/exceptions/permission-missing.exception.d.ts +5 -0
- package/dist/exceptions/unknown.exception.d.ts +5 -0
- package/dist/exceptions/wrong-key-path.exception.d.ts +5 -0
- package/dist/factorydrive/abstract.storage.d.ts +20 -0
- package/dist/factorydrive/index.d.ts +5 -0
- package/dist/factorydrive/local-file-system.storage.d.ts +25 -0
- package/dist/factorydrive/storage.manager.d.ts +20 -0
- package/dist/factorydrive/types.d.ts +42 -0
- package/dist/factorydrive/utils.d.ts +3 -0
- package/dist/factorydrive.constants.d.ts +1 -0
- package/dist/factorydrive.core-module.d.ts +10 -0
- package/dist/factorydrive.interfaces.d.ts +11 -0
- package/dist/factorydrive.module.d.ts +7 -0
- package/dist/factorydrive.service.d.ts +10 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +549 -0
- package/dist/package.json +88 -0
- package/package.json +88 -0
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tacxou/nestjs_module_factorydrive",
|
|
3
|
+
"version": "1.1.6",
|
|
4
|
+
"description": "Factory drive module for NestJS framework",
|
|
5
|
+
"repository": "https://github.com/tacxou/nestjs_module_factorydrive.git",
|
|
6
|
+
"author": "tacxou <12997062+tacxou@users.noreply.github.com> (https://github.com/tacxou)",
|
|
7
|
+
"contributors": [
|
|
8
|
+
{
|
|
9
|
+
"name": " tacxou",
|
|
10
|
+
"email": "12997062+tacxou@users.noreply.github.com",
|
|
11
|
+
"url": "https://github.com/tacxou"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"name": "Contributors",
|
|
15
|
+
"url": "https://github.com/tacxou/nestjs_module_factorydrive/graphs/contributors"
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"main": "dist/index.js",
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist/**/*",
|
|
23
|
+
"README.md",
|
|
24
|
+
"LICENSE"
|
|
25
|
+
],
|
|
26
|
+
"keywords": [
|
|
27
|
+
"factory",
|
|
28
|
+
"node",
|
|
29
|
+
"nodejs",
|
|
30
|
+
"disk",
|
|
31
|
+
"driver",
|
|
32
|
+
"local",
|
|
33
|
+
"drive",
|
|
34
|
+
"abstract",
|
|
35
|
+
"abstraction",
|
|
36
|
+
"nestjs",
|
|
37
|
+
"storage",
|
|
38
|
+
"filesystem",
|
|
39
|
+
"file",
|
|
40
|
+
"promise",
|
|
41
|
+
"async",
|
|
42
|
+
"spaces",
|
|
43
|
+
"factorydrive"
|
|
44
|
+
],
|
|
45
|
+
"scripts": {
|
|
46
|
+
"prebuild": "rimraf dist",
|
|
47
|
+
"build": "bun build ./src/index.ts --outdir ./dist --target node --splitting --packages external",
|
|
48
|
+
"build:type": "tsc --emitDeclarationOnly",
|
|
49
|
+
"build:cpr": "cpr README.md dist/README.md && cpr LICENSE dist/LICENSE && cpr package.json dist/package.json",
|
|
50
|
+
"postbuild": "bun build:type && bun build:cpr",
|
|
51
|
+
"test": "bun test",
|
|
52
|
+
"test:watch": "bun test --watch",
|
|
53
|
+
"test:coverage": "bun test --coverage --coverage-reporter lcov"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"fs-extra": "^11.3.4",
|
|
57
|
+
"node-exceptions": "^4.0.1"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
61
|
+
"@typescript-eslint/parser": "^8.56.1",
|
|
62
|
+
"@nestjs/common": "^11.1.16",
|
|
63
|
+
"@nestjs/core": "^11.1.16",
|
|
64
|
+
"@types/fs-extra": "^11.0.4",
|
|
65
|
+
"@types/node": "latest",
|
|
66
|
+
"@types/bun": "latest",
|
|
67
|
+
"cpr": "^3.0.1",
|
|
68
|
+
"eslint": "^10.0.2",
|
|
69
|
+
"prettier": "^3.8.1",
|
|
70
|
+
"reflect-metadata": "^0.2.2",
|
|
71
|
+
"rimraf": "^6.1.3",
|
|
72
|
+
"rxjs": "^7.8.2",
|
|
73
|
+
"ts-node": "^10.9.2"
|
|
74
|
+
},
|
|
75
|
+
"peerDependencies": {
|
|
76
|
+
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
77
|
+
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
78
|
+
"typescript": "^5.0.0"
|
|
79
|
+
},
|
|
80
|
+
"publishConfig": {
|
|
81
|
+
"access": "public"
|
|
82
|
+
},
|
|
83
|
+
"engines": {
|
|
84
|
+
"node": ">=22.0.0",
|
|
85
|
+
"bun": ">=1.0.0"
|
|
86
|
+
},
|
|
87
|
+
"packageManager": "bun@1.3.10"
|
|
88
|
+
}
|