-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"name": "paper-astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write --list-different .",
"lint:eslint": "eslint . --cache",
"lint:prettier": "prettier --check .",
"check:types": "wrangler types && astro sync && tsgo --noEmit",
"lint": "bun run lint:eslint && bun run lint:prettier",
"check": "bun run check:types",
"check:all": "bun run check && bun run lint",
"postinstall": "wrangler types"
},
"dependencies": {
"@astrojs/cloudflare": "13.1.7",
"@astrojs/rss": "4.0.18",
"@astrojs/sitemap": "3.7.2",
"@astrojs/svelte": "8.0.4",
"@fontsource/poppins": "5.2.7",
"@tailwindcss/vite": "4.2.2",
"astro": "6.1.3",
"astro-icon": "1.1.5",
"clsx": "2.1.1",
"remove-markdown": "0.6.3",
"runed": "0.37.1",
"svelte": "5.55.1",
"tailwindcss": "4.2.2",
"typescript": "6.0.2"
},
"devDependencies": {
"@astrojs/mdx": "5.0.3",
"@tailwindcss/typography": "0.5.19",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"@typescript/native-preview": "7.0.0-dev.20260401.1",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-astro": "1.6.0",
"eslint-plugin-svelte": "3.16.0",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-svelte": "3.5.1",
"prettier-plugin-tailwindcss": "0.7.2",
"svelte-eslint-parser": "1.6.0",
"wrangler": "4.80.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.x"
}
}
}