-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.36 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.36 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
{
"name": "@tacxou/nestjs_module_factorydrive",
"version": "1.1.6",
"description": "Factory drive module for NestJS framework",
"repository": "https://github.com/tacxou/nestjs_module_factorydrive.git",
"author": "tacxou <12997062+tacxou@users.noreply.github.com> (https://github.com/tacxou)",
"contributors": [
{
"name": " tacxou",
"email": "12997062+tacxou@users.noreply.github.com",
"url": "https://github.com/tacxou"
},
{
"name": "Contributors",
"url": "https://github.com/tacxou/nestjs_module_factorydrive/graphs/contributors"
}
],
"license": "MIT",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"factory",
"node",
"nodejs",
"disk",
"driver",
"local",
"drive",
"abstract",
"abstraction",
"nestjs",
"storage",
"filesystem",
"file",
"promise",
"async",
"spaces",
"factorydrive"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "bun build ./src/index.ts --outdir ./dist --target node --splitting --packages external",
"build:type": "tsc --emitDeclarationOnly",
"build:cpr": "cpr README.md dist/README.md && cpr LICENSE dist/LICENSE && cpr package.json dist/package.json",
"postbuild": "bun build:type && bun build:cpr",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage --coverage-reporter lcov"
},
"dependencies": {
"fs-extra": "^11.3.4",
"node-exceptions": "^4.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@nestjs/common": "^11.1.16",
"@nestjs/core": "^11.1.16",
"@types/fs-extra": "^11.0.4",
"@types/node": "latest",
"@types/bun": "latest",
"cpr": "^3.0.1",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.1.3",
"rxjs": "^7.8.2",
"ts-node": "^10.9.2"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.0.0",
"bun": ">=1.0.0"
},
"packageManager": "bun@1.3.10"
}