-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.8 KB
/
package.json
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
{
"name": "@gavant/html-to-pdf",
"version": "0.2.1",
"main": "./dist/main.js",
"exports": {
".": "./dist/main.js",
"./requests/handler": "./dist/requests/handler.js"
},
"types": "./dist/main.d.ts",
"repository": "https://github.com/Gavant/html-to-pdf.git",
"author": "Gavant Software",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.93",
"@types/node": "^17.0.23",
"@types/qunit": "^2.11.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.1",
"puppeteer": "^15.2.0",
"qunit": "^2.14.0",
"qunit-dom": "^1.6.0",
"release-it": "^14.13.1",
"typescript": "^4.6.3"
},
"scripts": {
"prepare": "yarn build",
"cli": "ts-node src/cli.ts",
"test": "tsc -p tsconfig.json && qunit dist/tests/unit/requests/**/*.js && qunit dist/tests/unit/services/pdf-generation.js",
"test-all": "tsc -p tsconfig.json && qunit dist/tests/**/*.js",
"lint": "eslint src/ --ext .js,.ts",
"build": "tsc -p tsconfig-build.json",
"clean": "rm -rf dist build",
"ts-node": "ts-node",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.56.0",
"@aws-sdk/s3-request-presigner": "^3.120.0",
"@sparticuz/chromium": "122",
"puppeteer-core": "^13.5.1",
"puppeteer-report": "^3.0.2"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.9.0",
"yarn": "3.6.4"
}
}