-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.6 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
89
90
91
92
93
94
95
{
"name": "@adaptivestone/framework-module-resize",
"version": "0.2.0",
"description": "Adaptive stone node js framework module: image resize (sharp)",
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=24.0.0"
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json",
"./models/ResizeTask.js": "./dist/models/ResizeTask.js",
"./commands/ResizeWorker.js": "./dist/commands/ResizeWorker.js",
"./config/resize.js": "./dist/config/resize.js",
"./transports/mongo.js": "./dist/transports/mongo.js",
"./transports/sqs.js": "./dist/transports/sqs.js",
"./storage/s3.js": "./dist/storage/s3.js",
"./storage/fs.js": "./dist/storage/fs.js",
"./mediaStore/framework.js": "./dist/mediaStore/framework.js",
"./locks/framework.js": "./dist/locks/framework.js"
},
"bin": {
"resize-scaffold": "./dist/scaffold/command.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaptivestone/framework-module-resize.git"
},
"homepage": "https://framework.adaptivestone.com/docs/resize",
"keywords": [
"node",
"image",
"resize",
"sharp",
"framework",
"adaptivestone",
"framework-module-resize"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "node preBuild.ts && tsc && node postBuild.ts",
"types:check": "tsc --noEmit",
"test": "node --experimental-strip-types --test",
"check": "biome check",
"check:fix": "biome check --write",
"smoke": "node smokeTest.ts"
},
"files": [
"dist",
"AGENTS.md"
],
"author": "Andrei Lahunou",
"license": "MIT",
"dependencies": {
"deepmerge": "^4.3.1",
"sharp": "^0.35.3"
},
"peerDependencies": {
"@adaptivestone/framework": "^5.0.1",
"@aws-sdk/client-s3": "*",
"@aws-sdk/client-sqs": "*",
"@aws-sdk/s3-request-presigner": "*",
"mongoose": "*",
"sqs-consumer": "*"
},
"peerDependenciesMeta": {
"@aws-sdk/client-s3": {
"optional": true
},
"@aws-sdk/client-sqs": {
"optional": true
},
"@aws-sdk/s3-request-presigner": {
"optional": true
},
"sqs-consumer": {
"optional": true
}
},
"devDependencies": {
"@adaptivestone/framework": "^5.1.0",
"@aws-sdk/client-s3": "^3.0.0",
"@aws-sdk/client-sqs": "^3.1079.0",
"@aws-sdk/s3-request-presigner": "^3.0.0",
"@biomejs/biome": "^2.5.2",
"@types/express": "^5.0.6",
"@types/node": "^26.1.0",
"mongodb-memory-server": "^11.0.0",
"mongoose": "^9.0.0",
"sqs-consumer": "^15.0.2",
"typescript": "^7.0.2"
}
}