litzjs 0.0.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,90 @@
1
+ {
2
+ "name": "litzjs",
3
+ "version": "0.0.0",
4
+ "description": "Client-first React framework with RSC support built on Vite",
5
+ "keywords": [
6
+ "framework",
7
+ "react",
8
+ "react-server-components",
9
+ "rsc",
10
+ "vite"
11
+ ],
12
+ "license": "MIT",
13
+ "repository": {
14
+ "url": "https://github.com/samlaycock/litzjs"
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "sideEffects": [
20
+ "./dist/client.js",
21
+ "./dist/client.mjs"
22
+ ],
23
+ "main": "dist/index.js",
24
+ "module": "dist/index.mjs",
25
+ "types": "dist/index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.mjs",
30
+ "require": "./dist/index.js"
31
+ },
32
+ "./client": {
33
+ "types": "./dist/client.d.ts",
34
+ "import": "./dist/client.mjs",
35
+ "require": "./dist/client.js"
36
+ },
37
+ "./server": {
38
+ "types": "./dist/server.d.ts",
39
+ "import": "./dist/server.mjs",
40
+ "require": "./dist/server.js"
41
+ },
42
+ "./vite": {
43
+ "types": "./dist/vite.d.ts",
44
+ "import": "./dist/vite.mjs",
45
+ "require": "./dist/vite.js"
46
+ }
47
+ },
48
+ "publishConfig": {
49
+ "provenance": true
50
+ },
51
+ "scripts": {
52
+ "lint": "oxlint . --type-aware",
53
+ "lint:fix": "oxlint . --type-aware --fix",
54
+ "fmt": "oxfmt .",
55
+ "fmt:check": "oxfmt . --check",
56
+ "test": "bun test",
57
+ "typecheck": "tsc --noEmit",
58
+ "build": "tsdown",
59
+ "check": "bun run fmt:check && bun run lint && bun run typecheck && bun test && bun run build && bun run fixture:build",
60
+ "prepublishOnly": "bun run check",
61
+ "ci:publish": "bun run check && changeset publish",
62
+ "fixture:dev": "vite --config fixtures/rsc-smoke/vite.config.ts",
63
+ "fixture:build": "vite build --config fixtures/rsc-smoke/vite.config.ts"
64
+ },
65
+ "dependencies": {
66
+ "tinyglobby": "0.2.15"
67
+ },
68
+ "devDependencies": {
69
+ "@changesets/cli": "2.30.0",
70
+ "@types/node": "25.5.0",
71
+ "@types/react": "19.2.14",
72
+ "@types/react-dom": "19.2.3",
73
+ "@vitejs/plugin-rsc": "0.5.21",
74
+ "bun-types": "1.3.11",
75
+ "happy-dom": "20.8.4",
76
+ "oxfmt": "0.41.0",
77
+ "oxlint": "1.56.0",
78
+ "oxlint-tsgolint": "0.17.1",
79
+ "react": "19.2.4",
80
+ "react-dom": "19.2.4",
81
+ "tsdown": "0.21.4",
82
+ "vite": "8.0.1"
83
+ },
84
+ "peerDependencies": {
85
+ "@vitejs/plugin-rsc": "^0.5.21",
86
+ "react": "^19",
87
+ "react-dom": "^19",
88
+ "typescript": "^5"
89
+ }
90
+ }