@webtypen/webframez-react 0.0.1
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/README.md +227 -0
- package/dist/client.cjs +1 -0
- package/dist/client.d.ts +32 -0
- package/dist/client.js +1 -0
- package/dist/http.cjs +704 -0
- package/dist/http.d.ts +16 -0
- package/dist/http.js +678 -0
- package/dist/index.cjs +894 -0
- package/dist/index.d.ts +30 -0
- package/dist/index.js +857 -0
- package/dist/navigation.cjs +149 -0
- package/dist/navigation.d.ts +16 -0
- package/dist/navigation.js +125 -0
- package/dist/router.cjs +386 -0
- package/dist/router.d.ts +21 -0
- package/dist/router.js +355 -0
- package/dist/types.cjs +17 -0
- package/dist/types.d.ts +87 -0
- package/dist/types.js +0 -0
- package/dist/webframez-core.cjs +852 -0
- package/dist/webframez-core.d.ts +19 -0
- package/dist/webframez-core.js +823 -0
- package/package.json +84 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@webtypen/webframez-react",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "TypeScript React RSC addition for @webtypen/webframez-core",
|
|
5
|
+
"homepage": "https://webtypen.de/",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Benedict Romp",
|
|
8
|
+
"email": "b.romp@webtypen.de",
|
|
9
|
+
"url": "https://webtypen.de/"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/webtypen/webframez-react/issues"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/webtypen/webframez-react.git"
|
|
17
|
+
},
|
|
18
|
+
"type": "module",
|
|
19
|
+
"main": "./dist/index.cjs",
|
|
20
|
+
"module": "./dist/index.js",
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"import": "./dist/index.js",
|
|
26
|
+
"require": "./dist/index.cjs"
|
|
27
|
+
},
|
|
28
|
+
"./client": {
|
|
29
|
+
"types": "./dist/client.d.ts",
|
|
30
|
+
"import": "./dist/client.js",
|
|
31
|
+
"require": "./dist/client.cjs"
|
|
32
|
+
},
|
|
33
|
+
"./router": {
|
|
34
|
+
"types": "./dist/router.d.ts",
|
|
35
|
+
"import": "./dist/router.js",
|
|
36
|
+
"require": "./dist/router.cjs"
|
|
37
|
+
},
|
|
38
|
+
"./navigation": {
|
|
39
|
+
"types": "./dist/navigation.d.ts",
|
|
40
|
+
"import": "./dist/navigation.js",
|
|
41
|
+
"require": "./dist/navigation.cjs"
|
|
42
|
+
},
|
|
43
|
+
"./types": {
|
|
44
|
+
"types": "./dist/types.d.ts",
|
|
45
|
+
"import": "./dist/types.js",
|
|
46
|
+
"require": "./dist/types.cjs"
|
|
47
|
+
},
|
|
48
|
+
"./http": {
|
|
49
|
+
"types": "./dist/http.d.ts",
|
|
50
|
+
"import": "./dist/http.js",
|
|
51
|
+
"require": "./dist/http.cjs"
|
|
52
|
+
},
|
|
53
|
+
"./webframez-core": {
|
|
54
|
+
"types": "./dist/webframez-core.d.ts",
|
|
55
|
+
"import": "./dist/webframez-core.js",
|
|
56
|
+
"require": "./dist/webframez-core.cjs"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"files": [
|
|
60
|
+
"dist"
|
|
61
|
+
],
|
|
62
|
+
"scripts": {
|
|
63
|
+
"clean": "rm -rf dist",
|
|
64
|
+
"build": "npm run clean && node scripts/build.mjs",
|
|
65
|
+
"build:watch": "node scripts/build.mjs --watch"
|
|
66
|
+
},
|
|
67
|
+
"peerDependencies": {
|
|
68
|
+
"@webtypen/webframez-core": "^0.3.30",
|
|
69
|
+
"react": "0.0.0-experimental-95ffd6cd-20260205",
|
|
70
|
+
"react-dom": "0.0.0-experimental-95ffd6cd-20260205",
|
|
71
|
+
"react-server-dom-webpack": "0.0.0-experimental-95ffd6cd-20260205"
|
|
72
|
+
},
|
|
73
|
+
"peerDependenciesMeta": {
|
|
74
|
+
"@webtypen/webframez-core": {
|
|
75
|
+
"optional": true
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"devDependencies": {
|
|
79
|
+
"esbuild": "^0.20.2",
|
|
80
|
+
"react": "0.0.0-experimental-95ffd6cd-20260205",
|
|
81
|
+
"react-dom": "0.0.0-experimental-95ffd6cd-20260205",
|
|
82
|
+
"react-server-dom-webpack": "0.0.0-experimental-95ffd6cd-20260205"
|
|
83
|
+
}
|
|
84
|
+
}
|