-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.87 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.87 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
{
"name": "@citadel-app/code",
"version": "1.2.3",
"description": "Code editing, LSP, LaTeX compilation, and interactive REPL for Citadel.",
"author": "Citadel Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/citadel-app/citadel-plugin-code.git"
},
"engines": {
"citadel": ">=1.2.3"
},
"citadel": {
"title": "Code Module",
"icon": "assets/icon.svg",
"main": "dist/main.js",
"renderer": "dist/renderer.js",
"authorUrl": "https://github.com/citadel-app",
"verified": true,
"permissions": [
"@citadel-app/base:fs.readFile",
"@citadel-app/base:fs.readFileBinary",
"@citadel-app/base:fs.exists",
"@citadel-app/base:fs.writeFile",
"@citadel-app/base:fs.createDirectory"
],
"providesIpcs": [
"latex.check",
"latex.compile",
"execution.start",
"execution.stop",
"execution.status",
"repl.startSession",
"repl.stopSession",
"repl.listContainers",
"repl.stopContainer",
"repl.removeContainer",
"repl.checkSession",
"repl.sendInput",
"code.getLspPort"
],
"sidecars": [
{
"id": "execution-sidecar",
"type": "docker"
},
{
"id": "repl-sidecar",
"type": "docker"
}
]
},
"scripts": {
"dev": "vite build --watch",
"build": "npm run build:main && npm run build:renderer",
"generate:marketplace": "node scripts/generate-marketplace-manifest.js",
"build:main": "vite build --mode main",
"build:renderer": "vite build --mode renderer"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@typescript/ata": "^0.9.8",
"monaco-editor": "^0.55.1",
"monaco-languageclient": "^10.7.0",
"uuid": "^9.0.1",
"vscode-jsonrpc": "^8.2.1",
"vscode-ws-jsonrpc": "^3.5.0",
"ws": "^8.18.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"react-resizable-panels": "^4.6.0",
"next-themes": "^0.4.6",
"react-markdown": "^10.1.0",
"remark-math": "^6.0.0",
"rehype-katex": "^7.0.1",
"katex": "^0.16.0"
},
"peerDependencies": {
"@citadel-app/core": "*",
"@citadel-app/sdk": "*",
"@citadel-app/ui": "*",
"lucide-react": "*",
"react": "*",
"react-dom": "*",
"react-router-dom": "*"
},
"devDependencies": {
"@citadel-app/core": "^1.2.3",
"@citadel-app/sdk": "^1.2.3",
"@citadel-app/ui": "^1.2.3",
"@electron-toolkit/utils": "^4.0.0",
"@types/node": "^25.5.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.10",
"@types/katex": "^0.16.0",
"@vitejs/plugin-react": "^4.2.1",
"electron": "^31.0.0",
"lucide-react": "^0.563.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"typescript": "^5.6.3",
"vite": "^5.0.0"
}
}