-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.05 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.05 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
{
"name": "ar10dev.github.io",
"version": "1.0.0",
"type": "module",
"description": "AR10Dev Github Page",
"author": "AR10Dev",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build && bun run copy:pwa",
"check": "astro check",
"preview": "astro preview",
"preview:cloudflare": "bun run build && wrangler dev",
"deploy:cloudflare": "bun run build && wrangler deploy",
"copy:pwa": "node -e \"const { copyFileSync, existsSync } = require('node:fs'); const files = [['dist/client/manifest.webmanifest', 'dist/manifest.webmanifest'], ['dist/server/sw.js', 'dist/sw.js']]; for (const [source, target] of files) { if (existsSync(source)) copyFileSync(source, target); }\"",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"setup:d2": "curl -fsSL https://d2lang.com/install.sh | sh -s --",
"agent:lint": "biome check --write . --reporter=summary",
"agent:check": "astro check 2>&1 | grep -E '(error|warning|Error|Warning)' || true",
"agent:build": "astro build --silent 2>&1 | grep -E '(error|Error|warn|✗)' || true",
"agent:spell": "cspell \"**\" --no-progress --no-summary 2>&1 | grep -v '^$' || true",
"agent:verify": "bun run agent:lint && bun run agent:check && bun run agent:build",
"generate-types": "wrangler types"
},
"keywords": [],
"devDependencies": {
"@astrojs/check": "0.9.8",
"@astrojs/mdx": "5.0.4",
"@astrojs/sitemap": "3.7.2",
"@astrojs/solid-js": "6.0.1",
"@biomejs/biome": "2.4.13",
"@tailwindcss/typography": "0.5.19",
"@tailwindcss/vite": "4.2.4",
"@vite-pwa/astro": "1.2.0",
"cspell": "10.0.0",
"playwright": "1.59.1",
"tailwindcss": "4.2.4",
"typescript": "6.0.3",
"wrangler": "4.86.0"
},
"dependencies": {
"@astrojs/cloudflare": "13.2.2",
"@astrojs/partytown": "2.1.7",
"@astrojs/rss": "4.0.18",
"@beoe/rehype-d2": "0.5.4",
"astro": "6.1.9",
"solid-js": "1.9.12"
},
"overrides": {
"vite": "^7"
}
}