-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.43 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.43 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "nteract-desktop",
"private": true,
"packageManager": "pnpm@10.30.0",
"scripts": {
"build": "pnpm --dir apps/notebook build",
"notebook:build": "pnpm --dir apps/notebook build",
"notebook:dev": "pnpm --dir apps/notebook dev",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "wdio run e2e/wdio.conf.js",
"test:e2e:native": "wdio run e2e/wdio.conf.js"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.12.2",
"@codemirror/lint": "^6.9.3",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.12",
"@lezer/highlight": "^1.2.3",
"@lezer/lr": "^1.4.8",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@tauri-apps/api": "^2.10.0",
"@uiw/codemirror-theme-github": "^4.25.4",
"@uiw/react-json-view": "^2.0.0-alpha.41",
"anser": "^2.3.5",
"ansi-to-react": "^6.2.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"escape-carriage": "^1.3.1",
"katex": "^0.16.28",
"leaflet": "^1.9.4",
"lezer-toml": "^1.0.0",
"lucide-react": "^0.513.0",
"plotly.js-dist-min": "^3.4.0",
"radix-ui": "^1.4.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.4.0",
"vega": "^6.2.0",
"vega-embed": "^7.1.0",
"vega-lite": "^6.4.2"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.8",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.10.0",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.5.2",
"@wdio/cli": "^8.40.0",
"@wdio/globals": "^8.40.0",
"@wdio/local-runner": "^8.40.0",
"@wdio/mocha-framework": "^8.40.0",
"@wdio/spec-reporter": "^8.40.0",
"@wdio/types": "^8.40.0",
"@mcpjam/inspector": "^2.1.0",
"jsdom": "^26.0.0",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^4.1.8",
"ts-node": "^10.9.2",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.4",
"webdriverio": "^8.40.0"
},
"pnpm": {
"overrides": {
"@codemirror/language": "6.12.2"
}
}
}