-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.62 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
{
"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": {
"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/inject-preloads.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"
},
"dependencies": {
"@astrojs/mdx": "^6.0.2",
"@astrojs/rss": "^4.0.18",
"@tailwindcss/vite": "^4.3.0",
"astro": "^6.4.4",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@cloudflare/workers-types": "^4.20260608.1",
"@eslint/js": "^10.0.1",
"@types/node": "^22.19.20",
"eslint": "^10.4.1",
"eslint-plugin-astro": "^1.7.0",
"globals": "^17.6.0",
"pagefind": "^1.5.2",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"sharp": "^0.34.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
}
}