-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.93 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
{
"name": "zcode",
"private": true,
"version": "0.0.0",
"description": "ZCode — dual-mode VS Code OSS browser IDE (browser + remote). Not affiliated with coder/code-server.",
"packageManager": "pnpm@11.11.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"sync-vscode": "bash scripts/sync-vscode.sh",
"build:server": "bash scripts/build-server.sh",
"build:server:check": "bash scripts/build-server.sh --check",
"build:web": "bash scripts/build-web.sh",
"build:web:check": "bash scripts/build-web.sh --check",
"fetch:vscode-web": "bash scripts/fetch-vscode-web.sh",
"fetch:reh": "bash scripts/fetch-reh-artifact.sh",
"dev:shell": "pnpm --filter @zcode/shell dev",
"dev:app": "pnpm --filter @zcode/web build && pnpm --filter @zcode/workbench build && NODE_ENV=development node apps/cli/dist/cli.js web --dir apps/web/dist --port 5000 --spa-debug",
"dev:ide": "pnpm fetch:vscode-web && pnpm --filter @zcode/workbench build && pnpm --filter @zcode/web build && NODE_ENV=development node apps/cli/dist/cli.js web --dir apps/web/dist --port 5000 --spa-debug",
"smoke": "bash scripts/smoke.sh",
"e2e:browser": "bash scripts/e2e-browser.sh",
"e2e:playwright": "bash scripts/e2e-playwright.sh",
"e2e:reh": "bash scripts/e2e-reh-terminal.sh",
"e2e": "pnpm e2e:browser && pnpm e2e:playwright",
"docker:build": "bash scripts/docker-build.sh",
"hosting:dry-run": "bash scripts/hosting-dry-run.sh",
"deploy:cloudflare": "bash scripts/deploy-cloudflare.sh",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@types/node": "^22.15.21",
"prettier": "^3.5.3",
"turbo": "^2.5.4",
"typescript": "^5.8.3"
}
}