-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.71 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
{
"name": "codaro-editor",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"archive-state:check": "node scripts/verifyLearningArchiveState.mjs",
"brand:sync": "node scripts/syncBrandMark.mjs",
"build": "npm run brand:sync && npm run visuals:sync && tsc -b && vite build && npm run pyproc:assets",
"check": "tsc -b",
"pyproc:assets": "node scripts/generatePyprocAssets.mjs",
"predev": "npm run brand:sync && npm run visuals:sync",
"visuals:sync": "node scripts/syncVisualAssets.mjs",
"preview": "vite preview"
},
"dependencies": {
"@astryxdesign/core": "0.1.6",
"@astryxdesign/theme-neutral": "0.1.6",
"@codemirror/autocomplete": "^6.20.2",
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/language": "^6.11.3",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.6",
"@lezer/highlight": "^1.2.1",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@stylexjs/stylex": "0.19.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "1.25.0",
"pyproc": "0.0.11",
"radix-ui": "^1.4.3",
"react": "19.2.7",
"react-dom": "19.2.7",
"tailwind-merge": "^3.4.0",
"yaml": "2.9.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.17",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"tailwindcss": "^4.1.17",
"typescript": "6.0.3",
"vite": "^8.0.16"
},
"overrides": {
"esbuild": "^0.28.1",
"@babel/core": "^7.29.6"
}
}