@bractjs/bractjs 0.1.29 → 0.2.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/LICENSE +21 -0
- package/README.md +1412 -0
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bractjs/bractjs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Production-grade SSR framework for Bun + React 19. File-based routing, streaming SSR, server actions, typed routes.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/bractjs/bractjs#readme",
|
|
@@ -42,12 +42,6 @@
|
|
|
42
42
|
"default": "./src/index.ts"
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
-
"scripts": {
|
|
46
|
-
"dev": "bun run src/dev/server.ts",
|
|
47
|
-
"build": "bun run src/build/bundler.ts",
|
|
48
|
-
"test": "bun test",
|
|
49
|
-
"typecheck": "bunx tsc --noEmit"
|
|
50
|
-
},
|
|
51
45
|
"peerDependencies": {
|
|
52
46
|
"react": "^19",
|
|
53
47
|
"react-dom": "^19"
|
|
@@ -58,5 +52,11 @@
|
|
|
58
52
|
"@types/react-dom": "^19",
|
|
59
53
|
"react": "^19",
|
|
60
54
|
"react-dom": "^19"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"dev": "bun run src/dev/server.ts",
|
|
58
|
+
"build": "bun run src/build/bundler.ts",
|
|
59
|
+
"test": "bun test",
|
|
60
|
+
"typecheck": "bunx tsc --noEmit"
|
|
61
61
|
}
|
|
62
|
-
}
|
|
62
|
+
}
|