-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.83 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
{
"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",
"data:update": "bun scripts/update-data.ts work",
"postinstall": "wrangler types"
},
"dependencies": {
"@astrojs/cloudflare": "14.1.3",
"@astrojs/rss": "4.0.19",
"@astrojs/sitemap": "3.7.3",
"@astrojs/svelte": "9.0.1",
"@fontsource/poppins": "5.2.7",
"@tailwindcss/vite": "4.3.3",
"astro": "7.1.1",
"astro-icon": "1.1.5",
"clsx": "2.1.1",
"remove-markdown": "0.6.4",
"runed": "0.37.1",
"svelte": "5.56.6",
"tailwindcss": "4.3.3",
"typescript": "6.0.3"
},
"devDependencies": {
"@astrojs/mdx": "7.0.3",
"@tailwindcss/typography": "0.5.20",
"@types/node": "25.9.5",
"@typescript-eslint/eslint-plugin": "8.64.0",
"@typescript-eslint/parser": "8.64.0",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"eslint": "10.7.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-astro": "3.0.1",
"eslint-plugin-svelte": "3.20.0",
"prettier": "3.9.5",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-svelte": "4.1.1",
"prettier-plugin-tailwindcss": "0.8.1",
"svelte-eslint-parser": "1.8.0",
"wrangler": "4.110.0"
},
"overrides": {
"@iconify/tools": "5.0.12",
"@iconify/utils": "3.1.4"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.x"
}
}
}