loly 0.1.0

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.
package/package.json ADDED
@@ -0,0 +1,108 @@
1
+ {
2
+ "name": "loly",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "bin": {
9
+ "loly": "./bin/loly.js"
10
+ },
11
+ "keywords": [
12
+ "loly",
13
+ "web-framework",
14
+ "fullstack-framework",
15
+ "meta-framework",
16
+ "ssr",
17
+ "streaming-ssr",
18
+ "html-streaming",
19
+ "server-components",
20
+ "async-components",
21
+ "islands",
22
+ "island-architecture",
23
+ "spa-navigation",
24
+ "file-based-routing",
25
+ "server-actions",
26
+ "use-server",
27
+ "reactivity",
28
+ "signals",
29
+ "stores",
30
+ "edge-ready",
31
+ "nodejs",
32
+ "typescript",
33
+ "performance",
34
+ "developer-experience"
35
+ ],
36
+ "exports": {
37
+ ".": {
38
+ "types": "./dist/index.d.ts",
39
+ "import": "./dist/index.js"
40
+ },
41
+ "./client": {
42
+ "types": "./dist/client.d.ts",
43
+ "import": "./dist/client.js"
44
+ },
45
+ "./components": {
46
+ "types": "./dist/components.d.ts",
47
+ "import": "./dist/components.js"
48
+ }
49
+ },
50
+ "scripts": {
51
+ "build": "tsup",
52
+ "typecheck": "tsc --noEmit",
53
+ "dev": "tsup --watch",
54
+ "prepublish": "node ../../scripts/prepublish.js",
55
+ "publish:alpha": "node ../../scripts/publish.js alpha",
56
+ "publish:beta": "node ../../scripts/publish.js beta",
57
+ "publish:latest": "node ../../scripts/publish.js latest"
58
+ },
59
+ "dependencies": {
60
+ "@types/compression": "^1.8.1",
61
+ "chokidar": "^3.5.3",
62
+ "compression": "^1.8.1",
63
+ "dotenv": "^16.4.5",
64
+ "express": "^4.18.2",
65
+ "glob": "^10.3.10",
66
+ "loly-jsx": "^0.1.0",
67
+ "sharp": "^0.34.5",
68
+ "tsx": "^4.7.0"
69
+ },
70
+ "devDependencies": {
71
+ "@rspack/cli": "^1.0.0",
72
+ "@rspack/core": "^1.0.0",
73
+ "@types/express": "^4.17.21",
74
+ "@types/node": "^20.11.0",
75
+ "autoprefixer": "^10.4.23",
76
+ "esbuild": "^0.19.0",
77
+ "postcss": "^8.5.6",
78
+ "tailwindcss": "^4.1.18",
79
+ "tsup": "^8.0.0",
80
+ "typescript": "^5.3.3"
81
+ },
82
+ "peerDependencies": {
83
+ "postcss": "^8.4.0"
84
+ },
85
+ "peerDependenciesMeta": {
86
+ "postcss": {
87
+ "optional": true
88
+ }
89
+ },
90
+ "files": [
91
+ "dist",
92
+ "bin",
93
+ "README.md",
94
+ "LICENSE"
95
+ ],
96
+ "license": "MIT",
97
+ "readme": "README.md",
98
+ "repository": {
99
+ "type": "git",
100
+ "url": "https://github.com/MenvielleValen/loly"
101
+ },
102
+ "homepage": "https://loly.dev",
103
+ "description": "Modern full-stack web framework with streaming SSR, async server components, islands architecture, and fine-grained reactivity.",
104
+ "author": {
105
+ "name": "Valentin Menvielle Candia",
106
+ "url": "https://github.com/MenvielleValen"
107
+ }
108
+ }