@rendela/vite 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/package.json +75 -0
  2. package/package.json +2 -2
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@rendela/vite",
3
+ "version": "1.0.3",
4
+ "description": "A tool for pre-rendering pages of your SPA to improve SEO and performance",
5
+ "author": "llopary",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "main": "dist/index.js",
9
+ "types": "dist/index.d.ts",
10
+ "bin": {
11
+ "rendela": "dist/cli.js"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/rendela/vite"
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "exports": {
21
+ ".": {
22
+ "import": "./dist/index.js",
23
+ "types": "./dist/types/index.d.ts"
24
+ },
25
+ "./config": {
26
+ "import": "./dist/config.js",
27
+ "types": "./dist/types/config.d.ts"
28
+ },
29
+ "./server": {
30
+ "import": "./dist/server.js",
31
+ "types": "./dist/types/server.d.ts"
32
+ },
33
+ "./crawler": {
34
+ "import": "./dist/crawler.js",
35
+ "types": "./dist/types/crawler.d.ts"
36
+ },
37
+ "./logUtils": {
38
+ "import": "./dist/utils/logUtils.js",
39
+ "types": "./dist/types/utils/logUtils.d.ts"
40
+ },
41
+ "./cli": {
42
+ "import": "./dist/cli.js",
43
+ "types": "./dist/types/cli.d.ts"
44
+ }
45
+ },
46
+ "scripts": {
47
+ "build": "tsc",
48
+ "dev": "tsc --watch",
49
+ "prepare": "tsc",
50
+ "pub": "bash ./pub.sh",
51
+ "postinstall": "npx playwright install chromium"
52
+ },
53
+ "devDependencies": {
54
+ "typescript": "^5.8.2",
55
+ "vite": "^5.0.0"
56
+ },
57
+ "dependencies": {
58
+ "playwright": "1.53.1"
59
+ },
60
+ "keywords": [
61
+ "vite",
62
+ "plugin",
63
+ "pre-render",
64
+ "playwright",
65
+ "seo",
66
+ "spa",
67
+ "rendela"
68
+ ],
69
+ "engines": {
70
+ "node": ">=18"
71
+ },
72
+ "publishConfig": {
73
+ "access": "public"
74
+ }
75
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rendela/vite",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "A tool for pre-rendering pages of your SPA to improve SEO and performance",
5
5
  "author": "llopary",
6
6
  "license": "MIT",
@@ -55,7 +55,7 @@
55
55
  "vite": "^5.0.0"
56
56
  },
57
57
  "dependencies": {
58
- "playwright": "1.52.0"
58
+ "playwright": "1.53.1"
59
59
  },
60
60
  "keywords": [
61
61
  "vite",