-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.96 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.96 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
{
"name": "aiida-explorer",
"version": "0.5.0",
"homepage": "https://aiidateam.github.io/aiida-explorer",
"repository": {
"type": "git",
"url": "https://github.com/aiidateam/aiida-explorer.git"
},
"type": "module",
"module": "dist/lib/main.js",
"files": [
"dist/lib",
"cli.js"
],
"sideEffects": [
"*.css"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build --mode lib",
"lint": "eslint .",
"format": "prettier --write .",
"check-size": "size-limit",
"check-prefix": "node check-prefix.js",
"preview": "vite preview"
},
"bin": {
"aiida-explorer": "cli.js"
},
"size-limit": [
{
"path": "dist/app/assets/*.js",
"limit": "4 MB"
}
],
"dependencies": {
"@inquirer/prompts": "^8.4.1",
"@spglib/moyo-wasm": "^0.7.1",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-virtual": "^3.13.23",
"@uiw/react-json-view": "^2.0.0-alpha.39",
"bands-visualiser": "^0.0.2",
"brillouinzone-visualizer": "^0.4.3",
"inquirer": "^13.4.1",
"mathjs": "^15.2.0",
"mc-react-structure-visualizer": "^0.8.3",
"open": "^11.0.0",
"plotly.js-basic-dist-min": "^3.1.2",
"react-json-view-lite": "^2.5.0",
"react-resizable-panels": "^3.0.6",
"react-router-dom": "^7.9.4",
"reactflow": "^11.11.4"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@size-limit/preset-small-lib": "^11.2.0",
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^9.33.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"rollup-plugin-visualizer": "^6.0.4",
"size-limit": "^11.2.0",
"tailwindcss": "^4.2.2",
"vite": "^8.0.8",
"vite-plugin-lib-inject-css": "^2.2.2"
}
}