-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 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
{
"name": "ltk-wiki",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "pnpm run build && wrangler dev",
"astro": "astro",
"check": "astro check",
"lint": "eslint .",
"format": "prettier --write .",
"deploy": "pnpm run build && wrangler deploy",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@astrojs/cloudflare": "12",
"@astrojs/starlight": "^0.34.0",
"@fontsource-variable/noto-sans": "^5.2.10",
"@fontsource/jetbrains-mono": "^5.2.8",
"astro": "^5.7.0",
"mermaid": "^11.14.0",
"sharp": "^0.33.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp",
"esbuild"
]
},
"devDependencies": {
"@astrojs/check": "^0.9.0",
"@astrojs/svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.2",
"bits-ui": "^2.17.3",
"eslint": "^9.0.0",
"eslint-plugin-astro": "^1.0.0",
"eslint-plugin-svelte": "^3.0.0",
"prettier": "^3.0.0",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-svelte": "^3.0.0",
"svelte": "^5.0.0",
"svelte-eslint-parser": "^1.6.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"wrangler": "^4.81.1"
}
}