-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.4 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
{
"name": "@islands/prerender",
"version": "0.10.0-beta.1",
"description": "Prerender utilities for îles",
"keywords": [
"islands",
"ssg",
"vite",
"vue"
],
"homepage": "https://github.com/ElMassimo/iles",
"bugs": {
"url": "https://github.com/ElMassimo/iles/issues"
},
"license": "MIT",
"author": "Máximo Mussini",
"files": [
"dist"
],
"type": "module",
"types": "dist/prerender.d.mts",
"exports": {
".": "./dist/prerender.mjs",
"./package.json": "./package.json"
},
"scripts": {
"dev": "vp pack prerender.ts --target node20 --watch",
"build": "vp pack prerender.ts --dts --clean --target node20",
"lint": "vp lint",
"lint:fix": "vp lint --fix"
},
"dependencies": {
"@islands/hydration": "workspace:^0.10.0-beta.1"
},
"devDependencies": {
"preact": "^10.24.3",
"preact-render-to-string": "^6.5.11",
"solid-js": "^1.9.3",
"svelte": "^5.46.4",
"typescript": "^5.6.3",
"vite-plus": "^0.1.14",
"vue": "^3.5.12"
},
"peerDependencies": {
"preact": "^10.24.3",
"preact-render-to-string": "^6.5.11",
"solid-js": "^1.9.3",
"svelte": "^5.46.4",
"vue": "^3.5.12"
},
"peerDependenciesMeta": {
"preact": { "optional": true },
"preact-render-to-string": { "optional": true },
"solid-js": { "optional": true },
"svelte": { "optional": true },
"vue": { "optional": true }
}
}