-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "@uyamazak/fastify-hc-pages",
"description": "A Fastify plugin that allows you to use Headless Chrome Pages with Puppeteer",
"version": "2.0.2",
"author": "uyamazak",
"access": "public",
"bugs": {
"url": "https://github.com/uyamazak/fastify-hc-pages/issues"
},
"dependencies": {
"fastify-plugin": "^4.5.0",
"puppeteer": "^20.7.4"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.0",
"@types/tap": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.2.1",
"fastify": "^4.15.0",
"prettier": "^2.7.1",
"tap": "^16.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/uyamazak/fastify-hc-pages#readme",
"keywords": [
"fastify",
"puppeteer"
],
"license": "MIT",
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/uyamazak/fastify-hc-pages.git"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"prepublishOnly": "npm run build",
"test": "tap --ts --no-check-coverage --no-browser --timeout=60 test/**/*.test.ts",
"lint": "eslint --fix ./ --ext ts"
},
"types": "dist/src/index.d.ts"
}