-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.21 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
{
"name": "website",
"packageManager": "pnpm@11.5.2",
"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",
"lint": "eslint . && tsx tooling/lint/index.ts",
"lint:eslint": "eslint .",
"lint:seo": "tsx tooling/lint/index.ts --category seo",
"lint:ui": "tsx tooling/lint/index.ts --category ui",
"lint:llm": "tsx tooling/lint/index.ts --category llm",
"lint:exports": "tsx tooling/lint/index.ts --category exports",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"compile:pcd": "tsx tooling/pcd/index.ts",
"compile:api": "tsx tooling/api/index.ts",
"compile:elo": "tsx tooling/elo/index.ts",
"worker:dev": "wrangler dev -c worker/wrangler.jsonc",
"worker:migrate": "wrangler d1 migrations apply dictionarry-clicks --local -c worker/wrangler.jsonc"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260804.1",
"@eslint/js": "^10.0.1",
"@icons-pack/svelte-simple-icons": "^7.2.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.70.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/vite": "^4.3.3",
"@types/better-sqlite3": "^9.6.0",
"@types/node": "^26",
"better-sqlite3": "^13.0.2",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.22.0",
"globals": "^17.9.0",
"katex": "^0.18.1",
"mdsvex": "^0.12.8",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"rehype-katex-svelte": "^1.2.0",
"remark-math": "3.0.1",
"svelte": "^5.56.8",
"svelte-check": "^4.7.4",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.5",
"typescript": "^6.0.2",
"typescript-eslint": "^8.66.0",
"vite": "^7.3.6",
"vitest": "^4.1.10",
"wrangler": "^4.118.0"
},
"dependencies": {
"@lucide/svelte": "^1.28.0",
"marked": "^18.0.9",
"plyr": "^3.8.4",
"rehype-slug": "^6.0.0",
"shiki": "^4.4.1",
"yaml": "2.9.0"
}
}