-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.74 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.74 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
108
109
110
111
{
"name": "pyxis",
"version": "0.24.1",
"private": true,
"scripts": {
"preinstall": "node ./scripts/check-pnpm.js",
"dev": "pnpm run setup-build && next dev --turbopack",
"build": "pnpm run setup-build && next build",
"start": "pnpm run setup-build && next start",
"setup-build": "rm -rf public/locales && cp -r locales public/locales && node scripts/build/initial_files_to_ts.js && node scripts/build/build-extensions.js && cp extensions/registry.json public/extensions/registry.json",
"format": "bash scripts/i18n/format_locales.sh && npx biome format --write src/",
"lint": "npx biome check src/",
"lint:fix": "npx biome check --write src/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"tree": "pnpm run build && ./tree.sh && ./tree-built-out.sh",
"preview": "pnpm exec serve out",
"create-extension": "node scripts/extensions/create-extension.js",
"clean": "rm -rf node_modules package-lock.json",
"reinstall": "pnpm run clean && pnpm install"
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@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-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/search": "^6.5.11",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.8",
"@isomorphic-git/lightning-fs": "^4.6.2",
"@monaco-editor/react": "^4.7.0",
"@tanstack/react-virtual": "^3.13.14",
"@types/d3": "^7.4.3",
"@uiw/react-codemirror": "^4.25.4",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"autoprefixer": "^10.4.23",
"clsx": "^2.1.1",
"crypto-browserify": "^3.12.1",
"diff": "^8.0.2",
"error-stack-parser": "^2.1.4",
"file-type": "^21.3.0",
"github-markdown-css": "^5.2.0",
"html-to-image": "^1.11.13",
"isomorphic-git": "^1.35.1",
"jschardet": "^3.1.4",
"jspdf": "^3.0.4",
"jszip": "^3.10.1",
"katex": "^0.16.27",
"lucide-react": "^0.546.0",
"mermaid": "^11.12.2",
"monaco-editor": "^0.53.0",
"next": "^16.1.1",
"os-browserify": "^0.3.0",
"pako": "^2.1.0",
"path-browserify": "^1.0.1",
"react": "^19.2.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"readable-stream": "^4.7.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"stackframe": "^1.3.4",
"tar-stream": "^3.1.7",
"valtio": "^2.3.0",
"vm-browserify": "^1.1.2",
"vscode-icons-js": "^11.6.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"@babel/helper-plugin-utils": "^7.27.1",
"@biomejs/biome": "^1.9.4",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^20.19.32",
"@types/pako": "^2.0.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/tar-stream": "^3.1.4",
"@welldone-software/why-did-you-render": "^10.0.1",
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"depcheck": "^1.4.7",
"enquirer": "^2.4.1",
"es-abstract": "^1.24.1",
"esbuild": "^0.25.12",
"figures": "^3.2.0",
"ora": "^5.4.1",
"react-scan": "^0.4.3",
"tailwindcss": "^3.4.19",
"ts-prune": "^0.10.3",
"typescript": "^5.9.3",
"unimported": "^1.31.1",
"vitest": "^4.0.18"
}
}