-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "@genomicx/ui",
"version": "0.9.0",
"description": "Shared UI components, styles, and WASM loader for GenomicX tools",
"license": "GPL-3.0",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./styles/tokens.css": "./src/styles/tokens.css",
"./styles/components.css": "./src/styles/components.css"
},
"files": [
"dist",
"src/styles"
],
"scripts": {
"build": "tsc && vite build",
"dev": "vite build --watch"
},
"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",
"react-hot-toast": "^2.0.0"
},
"devDependencies": {
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.0.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-router-dom": "^7.0.0",
"react-hot-toast": "^2.4.0",
"typescript": "^5.5.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.0.0"
}
}