-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 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
{
"name": "@oasisprotocol/rose-app-ui",
"private": true,
"version": "1.0.0",
"license": "See License in ../LICENSE",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"checkTs": "tsc --noEmit",
"build": "tsc && vite build"
},
"engines": {
"node": ">=20",
"pnpm": ">=10.0.0"
},
"dependencies": {
"@floating-ui/react": "^0.26.24",
"@fontsource-variable/figtree": "^5.0.20",
"@fontsource-variable/roboto-mono": "^5.0.18",
"@material-design-icons/svg": "^0.14.15",
"@metamask/jazzicon": "^2.0.0",
"@oasisprotocol/client": "^1.3.0",
"@oasisprotocol/nexus-api": "workspace:*",
"@oasisprotocol/rose-app-subcall": "workspace:*",
"@oasisprotocol/ui-library": "file:../ui-library",
"@rainbow-me/rainbowkit": "^2.1.2",
"bignumber.js": "^9.1.2",
"lucide-react": "^0.513.0",
"react": "^18.2.0",
"react-responsive": "^9.0.2",
"react-router-dom": "^6.22.2",
"viem": "^2.23.1",
"wagmi": "^2.14.11"
},
"devDependencies": {
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"typescript": "^5.9.3",
"vite": "^5.4.9",
"vite-plugin-dts": "^4.1.0",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^2.1.9"
},
"exports": {
".": {
"import": "./src/index.ts"
},
"./stake": {
"import": "./src/stake/index.ts"
},
"./move": {
"import": "./src/move/index.ts"
},
"./core": {
"import": "./src/core/index.ts"
},
"./core/index.css": {
"import": "./src/core/index.css"
},
"./discover": {
"import": "./src/discover/index.ts"
},
"./wrap": {
"import": "./src/wrap/index.ts"
}
}
}