-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "wallabag-serverless-bot",
"type": "module",
"main": "handler.js",
"scripts": {
"test": "vitest run --silent",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check --max-diagnostics=none",
"lint:fix": "biome check --write --unsafe --max-diagnostics=none"
},
"author": "wallabag <hello@wallabag.org>",
"license": "MIT",
"engines": {
"npm": "please-use-yarn-instead",
"yarn": ">= 1.22.0",
"node": ">= 24"
},
"devDependencies": {
"@20minutes/eslint-config": "^3.0.2",
"@fetch-mock/vitest": "^0.2.18",
"@smithy/util-stream": "^4.5.15",
"@vitest/coverage-v8": "4.1.4",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-vitest": "^7.0.1",
"esbuild": "^0.28.0",
"nock": "^14.0.13",
"serverless-esbuild": "^1.57.1",
"serverless-offline": "^13.9.0",
"vitest": "4.1.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1033.0",
"@aws-sdk/client-ses": "^3.1033.0",
"@octokit/rest": "^22.0.1",
"diffparser": "^2.0.1",
"got": "^15.0.3",
"mailparser": "^3.9.8",
"uri-js": "npm:uri-js-replace"
},
"resolutions": {
"uri-js": "npm:uri-js-replace"
}
}