-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 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
{
"name": "repl",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"prebuild": "svelte-kit sync",
"build": "vite build",
"build:typecheck": "tsc --noEmit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"deploy": "pnpm build && wrangler deploy",
"dev": "vite dev",
"fmt": "oxfmt && oxlint --fix",
"lint": "oxfmt --check && oxlint --deny-warnings",
"preview": "wrangler dev",
"test": "pnpm test:unit",
"test:ci": "pnpm test:unit",
"test:e2e": "pnpm test:smoke",
"test:smoke": "playwright test --config=playwright.config.ts",
"test:unit": "vitest run tests/unit"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"@zag-js/collection": "^1.40.0",
"@zag-js/combobox": "^1.40.0",
"@zag-js/dialog": "^1.40.0",
"@zag-js/dom-query": "^1.40.0",
"@zag-js/svelte": "^1.40.0",
"monaco-editor": "^0.55.1"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@sveltejs/adapter-cloudflare": "^7.2.8",
"@sveltejs/kit": "^2.59.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^25.6.0",
"@webcontainer/api": "^1.6.4",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"svelte": "^5.55.5",
"svelte-check": "^4.4.7",
"tailwindcss": "^4.2.4",
"typescript": "~6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"wrangler": "^4.87.0"
},
"packageManager": "pnpm@11.0.6"
}