-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.04 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.04 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
{
"name": "openboot-web",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest run && vitest run --config vitest.workers.config.ts",
"test:ui": "vitest --ui",
"test:run": "vitest run && vitest run --config vitest.workers.config.ts",
"test:happy-dom": "vitest run",
"test:workers": "vitest run --config vitest.workers.config.ts",
"test:coverage": "vitest run --coverage && vitest run --config vitest.workers.config.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate": "npm run lint && npm run check && npm run test:run && npm run build",
"install:hooks": "node scripts/install-hooks.mjs"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.16.6",
"@eslint/js": "^10.0.1",
"@sveltejs/adapter-cloudflare": "^7.2.6",
"@sveltejs/kit": "^2.50.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@vitest/coverage-v8": "^4.1.6",
"@vitest/ui": "^4.1.6",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.1",
"fuse.js": "^7.1.0",
"globals": "^15.15.0",
"happy-dom": "^20.6.1",
"mdsvex": "^0.12.6",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^3.5.2",
"rehype-slug": "^6.0.0",
"shiki": "^3.22.0",
"svelte": "^5.48.2",
"svelte-check": "^4.3.5",
"svelte-eslint-parser": "^1.6.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.3",
"vite": "^7.3.1",
"vitest": "^4.1.6",
"wrangler": "^4.61.1"
},
"dependencies": {
"@cf-wasm/resvg": "^0.3.3",
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.12.2",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.0"
}
}