-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.54 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
{
"name": "@islands/hydration",
"version": "0.10.0-beta.1",
"description": "Hydration 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",
"island.svelte"
],
"type": "module",
"types": "dist/hydration.d.ts",
"exports": {
".": "./dist/hydration.js",
"./preact": "./dist/preact.js",
"./solid": "./dist/solid.js",
"./svelte": "./dist/svelte.js",
"./vanilla": "./dist/vanilla.js",
"./vue": "./dist/vue.js",
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"scripts": {
"dev": "vp pack hydration.ts preact.ts vue.ts vanilla.ts solid.ts svelte.ts --platform browser --watch",
"build": "vp pack hydration.ts preact.ts vue.ts vanilla.ts solid.ts svelte.ts --dts --clean --platform browser",
"lint": "vp lint",
"lint:fix": "vp lint --fix"
},
"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",
"solid-js": "^1.9.3",
"svelte": "^5.46.4",
"vue": "^3.5.12"
},
"peerDependenciesMeta": {
"preact": { "optional": true },
"solid-js": { "optional": true },
"svelte": { "optional": true },
"vue": { "optional": true }
}
}