-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.71 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@cyb3rcore/reactify",
"version": "1.2.2",
"description": "React SSR + RSC for Fastify — React Server Components and SSR on Fastify + Vite, with file-system routing, server actions, streaming, and Valtio integration",
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/client-index.js",
"import": "./dist/index.js"
},
"./plugin": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
},
"./utils": {
"types": "./dist/vite/utils.d.ts",
"import": "./dist/vite/utils.js"
},
"./renderer": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:e2e": "npm run build && vitest run --config vitest.e2e.config.ts && npx playwright test",
"test:e2e:server": "vitest run --config vitest.e2e.config.ts",
"test:e2e:browser": "npx playwright test",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check ."
},
"dependencies": {
"@fastify/deepmerge": "^3.2.1",
"@fastify/middie": "^9.3.3",
"@fastify/static": "^9.3.0",
"@unhead/react": "^2.1.15",
"@vitejs/plugin-rsc": "0.5.27",
"acorn": "^8.17.0",
"acorn-strip-function": "^1.2.0",
"acorn-walk": "^8.3.5",
"devalue": "^5.8.1",
"fastify-plugin": "^5.1.0",
"fs-extra": "^11.3.6",
"klaw": "^4.1.0",
"minipass": "latest",
"mlly": "^1.8.2",
"package-directory": "^8.2.0",
"rsc-html-stream": "^0.0.7",
"valtio": "latest",
"youch": "^3.3.4"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@semantic-release/changelog": "^6.0.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/fs-extra": "^11.0.4",
"@types/klaw": "^3.0.7",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"fastify": "^5.10.0",
"jsdom": "^29.1.1",
"oxfmt": "^0.58.0",
"oxlint": "^1.73.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"semantic-release": "^25.0.8",
"typescript": "^6.0.3",
"vite": "^8.1.4",
"vitest": "^4.1.10"
},
"peerDependencies": {
"fastify": ">=5",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"vite": ">=6"
},
"packageManager": "pnpm@10.33.0"
}