-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1000 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1000 Bytes
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
{
"name": "@slashid/remix",
"version": "0.2.28",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/main.js",
"module": "dist/main.js",
"dependencies": {
"@slashid/react": "workspace:*",
"@slashid/slashid": "3.29.4",
"jose": "^5.2.0",
"url-join": "^5.0.0"
},
"devDependencies": {
"@remix-run/react": "^2.3.1",
"@remix-run/server-runtime": "^2.3.1",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsconfig": "workspace:*",
"vite": "^5.2.11"
},
"peerDependencies": {
"@remix-run/react": "^2.0.0",
"@remix-run/server-runtime": "^2.0.0",
"react": ">=18",
"react-dom": ">=18"
},
"scripts": {
"build": "vite build && tsc"
},
"exports": {
".": {
"import": "./dist/main.js"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist/*"
]
}