-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.34 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.34 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
65
{
"name": "ar10dev.github.io",
"version": "1.0.0",
"type": "module",
"description": "AR10Dev Github Page",
"author": "AR10Dev",
"scripts": {
"dev": "astro dev",
"build": "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",
"agent:build": "astro build --silent",
"agent:seo": "bun scripts/seo-audit.mjs",
"seo:html": "bun scripts/seo-audit.mjs",
"seo:schema": "bun scripts/schema-audit.mjs",
"seo:validate": "bun run build && bun run seo:html && bun run seo:schema",
"agent:positioning": "bun scripts/seo-positioning-check.mjs",
"agent:verify": "bun run agent:positioning && bun run agent:lint && bun run agent:check && bun run agent:build",
"generate-types": "wrangler types"
},
"keywords": [],
"devDependencies": {
"@astrojs/check": "0.9.9",
"@astrojs/mdx": "5.0.4",
"@astrojs/sitemap": "3.7.2",
"@astrojs/solid-js": "6.0.1",
"@biomejs/biome": "2.4.14",
"@lhci/cli": "^0.15.1",
"@tailwindcss/typography": "0.5.19",
"@tailwindcss/vite": "4.2.4",
"@vite-pwa/astro": "1.2.0",
"cheerio": "^1.2.0",
"fast-glob": "^3.3.3",
"html-validate": "^10.15.0",
"jsonld": "^9.0.0",
"linkinator": "^7.6.1",
"playwright": "1.59.1",
"schema-dts": "^2.0.0",
"tailwindcss": "4.2.4",
"typescript": "6.0.3",
"wrangler": "4.90.0"
},
"dependencies": {
"@astrojs/cloudflare": "13.5.0",
"@astrojs/partytown": "2.1.7",
"@astrojs/rss": "4.0.18",
"@beoe/rehype-d2": "0.5.4",
"astro": "6.3.1",
"solid-js": "1.9.12",
"zod": "^4.4.3"
},
"overrides": {
"vite": "^7"
}
}