-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.5 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.5 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
{
"name": "capture",
"version": "3.4.0",
"description": "A simple service for capturing rendered Web pages using puppeteer.",
"main": "api/index.ts",
"type": "module",
"scripts": {
"build-types": "df-build-types .",
"test-deps": "docker compose --profile test up -d --wait --quiet-pull",
"test": "npm run test-base test-it/*.ts",
"test-base": "NODE_ENV=test EVENTS_LOG_LEVEL=alert node --disable-warning=ExperimentalWarning --test-force-exit --test-concurrency=1 --test",
"dev-deps": "docker compose --profile dev up -d --wait --quiet-pull",
"stop-dev-deps": "docker compose --profile dev stop",
"dev": "NODE_ENV=development DEBUG=capture node --disable-warning=ExperimentalWarning --watch api/index.ts",
"lint": "eslint .",
"lint-fix": "eslint --fix",
"check-types": "tsc",
"quality": "npm run test-deps && npm run lint && npm run build-types && npm run check-types && npm run test && npm audit --omit=dev --audit-level=critical",
"prepare": "husky || true"
},
"imports": {
"#config": "./api/config.ts"
},
"engines": {
"node": "v20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koumoul-dev/capture.git"
},
"keywords": [
"capture",
"screenshot",
"puppeteer"
],
"author": "Alban Mouton <alban.mouton@koumoul.com>",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/koumoul-dev/capture/issues"
},
"homepage": "https://github.com/koumoul-dev/capture#readme",
"dependencies": {
"@data-fair/lib-express": "^1.22.2",
"config": "^4.1.1",
"cookie-parser": "^1.4.7",
"debug": "^4.4.3",
"express": "^5.2.1",
"generic-pool": "^3.9.0",
"get-pixels": "github:scijs/get-pixels#90e79d5786b13aadefe5427cdc23cf1f164ec637",
"gif-encoder": "^0.7.2",
"helmet": "^8.1.0",
"http-terminator": "^3.2.0",
"imagemin-gifsicle": "^7.0.0",
"prom-client": "^15.1.3",
"puppeteer": "^24.34.0",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.4.0",
"@data-fair/lib-types-builder": "^1.11.3",
"@types/config": "^3.3.5",
"@types/cookie-parser": "^1.4.10",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.6",
"@types/get-pixels": "^3.3.4",
"@types/gif-encoder": "^0.7.4",
"@types/imagemin-gifsicle": "^7.0.4",
"commitlint": "^20.4.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jimp": "^1.6.0",
"neostandard": "^0.12.2",
"pdf-parse": "^2.4.5",
"typescript": "^5.9.3"
}
}