-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.85 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
{
"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": "^7.0.0",
"@astrojs/rss": "^4.0.18",
"@tailwindcss/vite": "^4.3.1",
"astro": "^7.0.3",
"dompurify": "^3.4.11",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@cloudflare/workers-types": "^4.20260629.1",
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.1",
"eslint": "^10.6.0",
"eslint-plugin-astro": "^2.1.1",
"globals": "^17.7.0",
"linkinator": "7.6.1",
"pagefind": "^1.5.2",
"prettier": "^3.9.1",
"prettier-plugin-astro": "^0.14.1",
"sharp": "^0.35.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0"
},
"overrides": {
"esbuild": "^0.28.1"
}
}