-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"name": "@uniweb/runtime",
"version": "0.6.13",
"description": "Minimal runtime for loading Uniweb foundations",
"type": "module",
"exports": {
".": "./src/index.jsx",
"./ssr": "./dist/ssr.js",
"./provider": "./src/RuntimeProvider.jsx",
"./setup": "./src/setup.js",
"./foundation-loader": "./src/foundation-loader.js"
},
"files": [
"src",
"dist"
],
"scripts": {
"build:ssr": "vite build --config vite.config.ssr.js",
"prepublishOnly": "npm run build:ssr"
},
"keywords": [
"uniweb",
"runtime",
"react",
"foundation"
],
"author": "Proximify",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/uniweb/runtime.git"
},
"homepage": "https://github.com/uniweb/runtime#readme",
"bugs": {
"url": "https://github.com/uniweb/runtime/issues"
},
"engines": {
"node": ">=20.19"
},
"dependencies": {
"@uniweb/core": "workspace:*",
"@uniweb/theming": "workspace:*"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.5.2",
"vite": "^7.3.1"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-router-dom": "^6.0.0 || ^7.0.0"
}
}