-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
{
"name": "westrom.xyz",
"private": true,
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"postinstall": "svelte-kit sync",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev",
"lint": "prettier --ignore-path .gitignore --check .",
"format": "prettier --ignore-path .gitignore --write .",
"ci": "bun run check && bun run lint && bun run build"
},
"pre-commit": [
"format",
"ci"
],
"devDependencies": {
"@svelte-put/inline-svg": "^4.0.2",
"@sveltejs/adapter-static": "3.0.10",
"@sveltejs/kit": "2.46.3",
"@types/highlightjs": "^9.12.6",
"@types/html-minifier": "^4.0.6",
"@types/showdown": "^2.0.6",
"html-minifier": "^4.0.0",
"prettier": "3.6.2",
"prettier-plugin-svelte": "3.4.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-shift-heading": "^2.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-html": "^16.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"sass": "^1.98.0",
"showdown": "^2.1.0",
"svelte": "5.39.11",
"svelte-check": "4.3.2",
"svelte-loader": "^3.2.4",
"typescript": "5.9.3",
"vite": "7.1.9",
"yaml": "^2.8.3"
},
"dependencies": {
"highlight.js": "^11.11.1",
"highlightjs-lean": "^1.2.0",
"katex": "^0.16.40",
"modern-normalize": "3.0.1"
}
}