-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.82 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
{
"name": "specification-website",
"type": "module",
"version": "0.1.0",
"private": true,
"description": "The Website Specification — a platform-agnostic, full spec of the technical features a good website should have.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jdevalk/specification.website.git"
},
"homepage": "https://specification.website",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"dev": "astro dev --port 31337 --host",
"start": "astro dev --port 31337 --host",
"prebuild": "node scripts/generate-assets.mjs",
"build": "astro build && pagefind --site dist",
"build:astro": "astro build",
"predev": "node scripts/generate-assets.mjs",
"preview": "astro preview --port 31337 --host",
"astro": "astro",
"check": "astro check",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"assets": "node scripts/generate-assets.mjs",
"sign:ard": "node scripts/sign-ard-catalog.mjs",
"check:ard": "node scripts/sign-ard-catalog.mjs --check"
},
"dependencies": {
"@astrojs/mdx": "^6.0.3",
"@astrojs/rss": "^4.0.18",
"@tailwindcss/vite": "^4.3.1",
"astro": "^6.4.8",
"dompurify": "^3.4.11",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@cloudflare/workers-types": "^4.20260621.1",
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.0",
"eslint": "^10.5.0",
"eslint-plugin-astro": "^2.0.0",
"globals": "^17.6.0",
"pagefind": "^1.5.2",
"prettier": "^3.8.4",
"prettier-plugin-astro": "^0.14.1",
"sharp": "^0.35.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1"
},
"overrides": {
"esbuild": "^0.28.1"
}
}