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
|
{
"name": "ori-ui",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"typecheck": "tsc -b",
"test": "NODE_OPTIONS=--no-experimental-webstorage vitest run",
"predev": "node scripts/copy-icons.mjs",
"prebuild": "node scripts/copy-icons.mjs"
},
"dependencies": {
"@asciidoctor/core": "^4.0.11",
"@monaco-editor/react": "^4.7.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"monaco-editor": "^0.56.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"vscode-material-icons": "^0.1.1",
"zustand": "^5.0.15"
},
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.0.0",
"jsdom": "^26.0.0",
"typescript": "^5.6.0",
"vite": "^7.0.0",
"vitest": "^3.0.0"
},
"allowScripts": {
"esbuild@0.28.2": true
}
}
|