-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.96 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
{
"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 && node scripts/check-integrity.mjs",
"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",
"test:websub": "node --experimental-strip-types scripts/test-websub.mjs",
"sign:skill": "node scripts/check-skill.mjs",
"check:skill": "node scripts/check-skill.mjs --check"
},
"dependencies": {
"@astrojs/mdx": "^7.0.5",
"@astrojs/rss": "^4.0.19",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.2.2",
"dompurify": "^3.4.12",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@cloudflare/workers-types": "^5.20260814.1",
"@eslint/js": "^10.0.1",
"@types/node": "^26.2.0",
"eslint": "^10.8.1",
"eslint-plugin-astro": "^3.1.0",
"globals": "^17.11.0",
"linkinator": "8.0.3",
"pagefind": "^1.5.2",
"prettier": "^3.9.6",
"prettier-plugin-astro": "^0.14.1",
"sharp": "^0.35.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0"
},
"overrides": {
"esbuild": "^0.28.1"
}
}