-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.4 KB
/
package.json
File metadata and controls
60 lines (60 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
59
60
{
"name": "@matths/fastify-svelte-view",
"version": "1.0.5",
"description": "A Fastify plugin for svelte views using CSR/SSR with or without hydration.",
"homepage": "https://github.com/matths/fastify-svelte-view",
"author": {
"name": "Matthias Dittgen",
"url": "https://github.com/matths"
},
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"README.md",
"LICENSE"
],
"keywords": [
"fastify",
"plugin",
"svelte",
"view",
"render",
"template",
"ssr",
"csr",
"server",
"client",
"hydration"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf build",
"prepare": "npm run build",
"publish": "npm publish --access public",
"test": "npm run build && vitest run --coverage"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"fastify-plugin": "^5.1.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@piscina/fastify": "^6.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"fastify": "^5.7.4",
"rollup": "^4.57.1",
"rollup-plugin-svelte": "^7.2.3",
"sass": "^1.97.3",
"svelte": "^5.53.0",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1"
}
}