-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.34 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.34 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
{
"name": "9ed",
"version": "0.2.3",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --config vite.config.ts",
"build": "vite build --config vite.config.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run --environment jsdom",
"preview": "vite preview --config vite.config.ts",
"server": "go run ./cmd/server",
"build:embedded": "vite build --config vite.config.ts --outDir ../internal/webassets/dist",
"server:build": "go build -o server ./cmd/server",
"binary:build": "npm run build:embedded && go build -tags embedassets -o server ./cmd/server",
"start": "npm install && npm run build && go run ./cmd/server",
"go:test": "go test ./...",
"go:build": "go build ./...",
"check": "npm run typecheck && go vet ./..."
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"monaco-editor": "^0.53.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.10.0",
"remark-gfm": "^4.0.1",
"zustand": "^5.0.12"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^5.1.4",
"jsdom": "^26.0.0",
"typescript": "^5.6.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}