-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.62 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
96
97
98
99
100
101
102
103
104
105
{
"name": "renderready",
"version": "1.0.0",
"description": "Prerender any JavaScript web page to static HTML. A modern, Playwright-powered prerender server you can start in one line.",
"keywords": [
"prerender",
"prerendering",
"seo",
"javascript-seo",
"playwright",
"headless",
"chromium",
"chrome",
"spa",
"crawler",
"render",
"html",
"server"
],
"license": "MIT",
"author": "Luka Pozega",
"repository": {
"type": "git",
"url": "git+https://github.com/lukapozega/renderready.git"
},
"bugs": {
"url": "https://github.com/lukapozega/renderready/issues"
},
"homepage": "https://github.com/lukapozega/renderready#readme",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"bin": {
"renderready": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=22.12.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsx watch src/cli.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:docker": "docker build -t renderready:local . && scripts/docker-smoke.sh renderready:local",
"check:packaging": "publint --strict && attw --pack .",
"verify": "npm run lint && npm run typecheck && npm run test",
"prepublishOnly": "npm run build",
"release": "changeset publish"
},
"overrides": {
"esbuild": "^0.28.1"
},
"dependencies": {
"fastify": "^5.11.2",
"playwright-core": "^1.62.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@changesets/cli": "^2.31.1",
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.2",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"playwright": "^1.62.1",
"prettier": "^3.9.6",
"publint": "^0.3.23",
"tsup": "^8.5.1",
"tsx": "^4.23.9",
"typescript": "^5.9.3",
"typescript-eslint": "^8.66.0",
"vitest": "^4.1.10"
}
}